-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
52 lines (50 loc) · 1.09 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
'use strict';
const year = new Date().getFullYear();
module.exports = {
url: 'https://tsubame3.me',
pathPrefix: '/',
title: 'つばめさんのブログ',
subtitle: '情報系大学院生のブログ',
copyright: `© ${year} つばめさん.`,
disqusShortname: '',
postsPerPage: 4,
googleAnalyticsId: 'G-CB4978B4S8',
useKatex: false,
menu: [
{
label: 'Articles',
path: '/'
// },
// {
// label: 'About me',
// path: '/pages/about'
// },
// {
// label: 'Contact me',
// path: '/pages/contacts'
}
],
author: {
name: 'つばめさん',
photo: '/logo.png',
bio: '情報系の大学院生です!技術系のことや日常のことを記事にしていこうと思います!',
contacts: {
email: '',
facebook: '',
telegram: '',
twitter: 'is_tsubame',
github: 'swallowms',
rss: '',
vkontakte: '',
linkedin: '',
instagram: '',
line: '',
gitlab: '',
weibo: '',
codepen: '',
youtube: '',
soundcloud: '',
medium: '',
}
}
};