-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
61 lines (60 loc) · 1.25 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
"use strict";
module.exports = {
url: "https://kyleschrade-blog.netlify.app/",
pathPrefix: "/my-blog",
title: "Kyle Schrade's Blog",
subtitle: "I blog about things that I work with, for better or worse.",
copyright: "© All rights reserved.",
disqusShortname: "",
postsPerPage: 6,
googleAnalyticsId: "UA-172152594-1",
useKatex: false,
menu: [
{
label: "Articles",
path: "/",
},
{
label: "About me",
path: "/pages/about",
},
{
label: "My Setup",
path: "/pages/my-setup",
},
{
label: "Contact me",
path: "/pages/contacts",
},
{
label: "Projects",
path: "/pages/projects",
},
{
label: "Talks",
path: "/pages/talks",
},
],
author: {
name: "Kyle Schrade",
photo: "/photo.jpg",
bio: "Engineer at StockX and bad writer",
contacts: {
email: "[email protected]",
facebook: "kyleschrade",
telegram: "",
twitter: "notkyleschrade",
github: "kschrade",
rss: "/feed",
vkontakte: "",
linkedin: "kyle-schrade-63a003aa",
instagram: "kyleschrade",
line: "",
gitlab: "",
weibo: "",
codepen: "",
youtube: "",
soundcloud: "",
},
},
};