-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsiteConfig.js
More file actions
82 lines (82 loc) · 1.72 KB
/
Copy pathsiteConfig.js
File metadata and controls
82 lines (82 loc) · 1.72 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
module.exports = {
siteTitle: '040code',
siteDescription: 'A developers blog',
authorName: '040 code',
twitterUsername: 'niekos77',
authorAvatar: '',
multilangPosts: false, // enable/disable flags in post lists
authorDescription: ``,
siteUrl: 'https://040code.github.io/',
disqusSiteUrl: 'https://www.disqus.com/',
// Prefixes all links. For cases when deployed to maxpou.fr/gatsby-starter-morning-dew/
pathPrefix: '/', // Note: it must *not* have a trailing slash.
siteCover: '/images/cover.jpg',
googleAnalyticsId: 'UA-97020149-1',
background_color: '#ffffff',
theme_color: '#222222',
display: 'standalone',
icon: 'src/assets/gatsby-icon.png',
postsPerPage: 7,
disqusShortname: '040code',
headerLinks: [
{
label: '🏡 040 blog',
url: '/',
},
{
label: 'About',
url: '/about',
},
{
label: 'Niek Palm',
url: '/authors/niek',
},
{
label: 'Maarten Metz',
url: '/authors/maarten',
},
{
label: 'Jeroen Knoops',
url: '/authors/jeroen',
},
{
label: 'Stefan van den Oord',
url: '/authors/stefan',
},
{
label: 'Thales Sousa',
url: '/authors/thales',
},
],
// Footer information (ex: Github, Netlify...)
footerLinks: [
[
'040 code © 2019',
{
label: 'Gatsby',
prefix: 'Built with ',
url: 'https://www.gatsbyjs.org/',
},
],
[
'Blog',
{
label: 'home',
prefix: '',
url: '/',
},
{
label: 'about',
prefix: '',
url: '/about',
},
],
[
'Source',
{
label: 'Github',
url: 'https://github.com/040code/',
},
],
],
}