-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
87 lines (76 loc) · 2.13 KB
/
config.toml
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
baseurl = "" # Change
title = "My Title" # Change
theme = ""
author = "" # Change
canonifyurls = true
paginate = 10
[indexes]
tag = "tags"
category = "categories"
[params]
# Shown in the home page
subtitle = "A descriptive subheader" # Change
googleAnalytics = "" # Change
disqus = "" # Change
# CSS name for highlight.js
highlightjs = "solarized-dark"
# additional languages for highlight.js (for all pages)
highlightjs_extra_languages = ["lisp", "r", "autohotkey"] # Customize for irregular languages that show up in your posts
dateFormat = "02 Jan 2006, 15:04"
# This is just a stock example. You should customize the menu according to your preferences
[menu]
# Shown in the side menu.
[[menu.navigation]]
name = "Home"
pre = "<i class='fas fa-home fa-fw'></i>"
weight = 1
identifier = "home"
url = "/"
[[menu.content]]
name = "Posts"
pre = "<i class='fas fa-image fa-fw'></i>"
weight = 2
identifier = "posts"
url = "/posts/"
[[menu.content]]
name = "Pages"
pre = "<i class='fas fa-file-alt fa-fw'></i>"
weight = 3
identifier = "pages"
url = "/pages/"
[[menu.content]]
name = "Categories"
pre = "<i class='fas fa-folder fa-fw'></i>"
weight = 4
identifier = "categories"
url = "/categories/"
[[menu.content]]
name = "Tags"
pre = "<i class='fas fa-tags fa-fw'></i>"
weight = 5
identifier = "tags"
url = "/tags/"
[[menu.site]]
name = "About"
pre = "<i class='fas fa-sitemap fa-fw'></i>"
weight = 6
identifier = "about-the-site"
url = "/pages/about-the-site/"
[[menu.site]]
name = "RSS"
pre = "<i class='fas fa-rss fa-fw'></i>"
weight = 7
identifier = "rss"
url = "/index.xml"
[[menu.author]]
name = "About"
pre = "<i class='fas fa-user fa-fw'></i>"
weight = 8
identifier = "about-the-author"
url = "/pages/about-the-author/"
[[menu.author]]
name = "Contact"
pre = "<i class='fas fa-phone fa-fw'></i>"
weight = 9
identifier = "contact"
url = "/pages/contact/"