-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
54 lines (53 loc) · 1.12 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
'use strict';
module.exports = {
url: 'https://tillog.netlify.com',
pathPrefix: '/',
title: '한현상 블로그',
subtitle: 'TIL을 기록하는 Tillog입니다.',
copyright: 'Hyunsang Han © All rights reserved.',
disqusShortname: 'tillog',
postsPerPage: 8,
googleAnalyticsId: 'UA-156691440-1',
googleAdSenseAccountId: 'pub-5838174320346482',
useKatex: false,
menu: [
{
label: 'Articles',
path: '/'
},
{
label: 'Tags',
path: '/tags'
},
{
label: 'About me',
path: '/pages/about'
},
{
label: 'Contact me',
path: '/pages/contacts'
}
],
author: {
name: 'Hyunsang Han',
photo: '/photo4.jpg',
bio: 'Software engineer who was product manager',
contacts: {
email: 'gustkd3@gmail.com',
facebook: 'gustkd3',
telegram: '',
twitter: '',
github: 'HyunSangHan',
rss: '',
vkontakte: '',
linkedin: '현상-한-971604178',
instagram: 'phenomenon_kr',
line: 'gustkd3',
gitlab: '',
weibo: '',
codepen: '',
youtube: '',
soundcloud: '',
}
}
};