-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathconfig.js
147 lines (147 loc) · 3.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
module.exports ={
// 站点信息
seo:{
title:"小红鸡博客",
index:"",
keywords:"兰州小红鸡,博客,技术博客,写作,阅读,小鸡",
description:"小鸡的博客,代码记录成长",
},
// 用户配置
users: [
{name: '小鸡', password: '123456'},
{name: 'Valky', password: '123456'}
],
// 作者信息
author:{
"佚名": {
head_img:"/images/head.png",
blog_name: "佚名",
header_logo: "/images/headerico.png",
logo: "logo4.png",
email: "flyphp@outlook.com"
},
"小鸡": {
head_img:"/images/head.png",
blog_name: "小鸡",
header_logo: "/images/headerico.png",
logo: "logo4.png",
email: "flyphp@outlook.com"
},
"Valky":{
head_img:"/images/head_r.jpg",
blog_name: "Valky",
header_logo: "/images/headerico_r.png",
logo: "headerico2_r.png",
email: "1696731766@qq.com"
}
},
// 站点信息
options:{
avatar:"/images/avatar.jpg",
nickname:"小红鸡博客",
description:"桃李春风一杯酒,江湖夜雨十年灯",
ICP:"闽ICP备18025365号",
copyright:"© 2018"
},
// 首页轮播图设置
carousel:[
{
'link':'/post/651cfd47.html',
'img':'/images/18123106.jpg'
},
{
'link':'/post/73ad4183.html',
'img':'/images/18122304.jpg'
},
{
'link':'/post/e8d13fc.html',
'img':'/images/110602.png'
},
{
'link':'/post/118d23db.html',
'img':'/images/110601.png'
},
{
'link':'/post/56d5689a.html',
'img':'/images/111302.png'
},
],
email_auth:{
// 用来发送消息的邮箱
name: "小鸡",
id: "237199972@qq.com",
key: "kyonyaawymfgbiid",
// 自己用来接收消息的邮箱
my_mail: "flyphp@outlook.com"
},
// 首页侧边栏
index_aside: [
{
img: "/images/110604.jpg",
link: "/tag/%E9%9A%8F%E6%83%B3/"
},
{
img: "/images/110605.jpg",
link: "/tag/资源"
},
{
img: "/images/110606.jpg",
link: "/post/about小鸡"
},
{
img: "/images/110607.png",
link: "/archives"
}
],
// 首页友链
friends:[
{
img: "https://secure.gravatar.com/avatar/1741a6eef5c824899e347e4afcbaa75d?s=64&r=G&d=",
link: "https://blog.imalan.cn/",
name: "无文字",
desc: "无文字 | 三无计划"
},
{
img: "https://www.52share.online/medias/avatar.jpg",
link: "https://www.52share.online/",
name: "在线分享网",
desc: "免费分享各种学习视频,资源收集于网络!"
},
{
img: "/images/Rss.png",
link: "/post/email",
name: "邮件订阅",
desc: "友情位闲置中,欢迎入驻"
}
],
// 标签云
tags: ["随想","博客","机器学习","教程","邻家酒肆","前端","深度学习","算法","小程序",
"资源","cpp","html","javascript","python","sql","node"],
// 页脚菜单栏
footer_menu:[
{
desc: "关于小鸡",
link: "/post/about"
},
{
desc: "联系小鸡",
link: "/post/about"
},
{
desc: "RSS订阅",
link: "/rss.xml"
},
{
desc: "邮件订阅",
link: "/post/email"
},
{
desc: "Github",
link: "https://www.github.com/flymysql"
},
{
desc: "微博",
link: "https://weibo.com/237199972"
},
]
}