-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththeme-config.js
45 lines (45 loc) · 1.16 KB
/
theme-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module.exports = {
name: 'Lorem Ipsum',
initialLinks: {
paths: [
{
path: '/',
title: 'Home',
},
{
path: '/about',
title: 'About'
},
{
path: '/contact',
title: 'Contact'
},
],
socialLinks: [
{
path: 'https://www.twitter.com/',
icon: 'fa-twitter',
name: 'Twitter',
},
{
path: 'https://www.linkedin.com/in/',
icon: 'fa-linkedin',
name: 'LinkedIn',
},
{
path: 'https://www.github.com/',
icon: 'fa-github',
name: 'Github',
}
]
},
copyright: {
owner: '© Lorem Ipsum',
},
introText: {
'/': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus mi nulla, condimentum vehicula neque ac. ',
'/about': 'Proin a eros ut diam aliquam blandit non ut diam. Proin ut vehicula enim.',
'/speaking': 'Praesent in pellentesque dui. Donec ultrices hendrerit sem rhoncus auctor.',
'/contact': 'Proin urna mauris, tristique quis diam non, blandit rhoncus orci.'
}
}