forked from moeyua/astro-theme-typography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.ts
61 lines (60 loc) · 1.25 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
59
60
export const THEME_CONFIG: App.Locals['config'] = {
/** blog title */
title: "活版印字",
/** your name */
author: "Typography",
/** website description */
desc: "Rediscory the beauty of typography",
/** your deployed domain */
website: "https://astro-theme-typography.vercel.app/",
/** your locale */
locale: "en-us",
/** theme style */
themeStyle: "light",
/** your socials */
socials: [
{
name: "github",
href: "https://github.com/moeyua/astro-theme-typography",
},
{
name: "rss",
href: "/atom.xml",
},
{
name: "twitter",
href: "https://github.com/moeyua/astro-theme-typography",
},
{
name: "mastodon",
href: "https://github.com/moeyua/astro-theme-typography",
}
],
/** your header info */
header: {
twitter: "@moeyua13",
},
/** your navigation links */
navs: [
{
name: "Posts",
href: "/posts/page/1",
},
{
name: "Archive",
href: "/archive",
},
{
name: "Categories",
href: "/categories"
},
{
name: "About",
href: "/about",
},
],
/** your category name mapping, which the `path` will be shown in the url */
category_map: [
{name: "胡适", path: "hu-shi"},
]
}