-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.ts
59 lines (57 loc) · 1.11 KB
/
theme.config.ts
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
export const THEME_CONFIG: App.Locals['config'] = {
/** blog title */
title: "人生現役",
/** your name */
author: "",
/** website description */
desc: "Rediscory the beauty of typography",
/** your deployed domain */
website: "https://blog.tianpei.cool/",
/** your locale */
locale: "zh-cn",
/** theme style */
themeStyle: "light",
/** your socials */
socials: [
{
name: "github",
href: "https://github.com/suzulang",
},
{
name: "rss",
href: "/atom.xml",
},
{
name: "twitter",
href: "https://twitter.com/suzulangX",
}
],
/** your header info */
header: {
twitter: "@suzulangX",
},
/** your navigation links */
navs: [
{
name: "Archive",
href: "/archive",
},
{
name: "Categories",
href: "/categories"
},
{
name: "Friends",
href: "/friends"
},
{
name: "About",
href: "/about",
}
],
/** your category name mapping, which the `path` will be shown in the url */
category_map: [
{name: "胡适", path: "hu-shi"},
],
sortOrder: "up"
}