-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
116 lines (88 loc) · 3.05 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
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
baseURL = "https://oblitorum.github.io/"
languageCode = "en-us"
title = "Jason Ng"
summaryLength = 15
paginate = 5
copyright = "Unless explicitly stated, all content released here are licensed under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0)."
googleAnalytics = "UA-184494738-1"
[module]
[[module.imports]]
path = "github.com/foo-dogsquared/hugo-theme-arch-terminal"
[mediaTypes]
[mediaTypes."application/atom+xml"]
suffixes = ["atom"]
[mediaTypes."application/rss+xml"]
suffixes = ["rss"]
[outputFormats]
[outputFormats.RSS]
mediaType = "application/rss+xml"
baseName = "index"
[outputFormats.Atom]
mediaType = "application/atom+xml"
baseName = "index"
[outputs]
home = ["HTML", "RSS", "ATOM", "JSON"]
section = ["HTML", "RSS", "ATOM", "JSON"]
[author]
name = "John Dodo"
alias = "ordinary-extinction"
email = "[email protected]"
[menu]
[[menu.main]]
identifier = "articles"
name = "Articles"
url = "articles/"
[[menu.main]]
identifier = "about"
name = "About"
url = "about/"
[[menu.main]]
identifier = "archives"
name = "Archives"
url = "archives/"
[[menu.main]]
identifier = "feeds"
name = "Feeds"
url = "feeds/"
[params]
# The subtitle of the blog. Mostly appears in the <title> tag.
subtitle = "Blogger"
keywords = ["John Dodo", "ordinary-extinction", "blog"]
# The tagline that'll appear in the homepage as the first header.
tagline = "The truth must be told."
# Hide posts on home. :)
# hidePostsOnHome = true
# Indicates if the site sections should be listed instead.
# Requires `showPostsOnHome` to be enabled.
# listSiteSectionsOnHome = true
# Enable content pagination
# enableContentPagination = true
# Improve SEO capabilities
enableTwitterCard = true
enableOpenGraphSchema = true
enableJsonLdSchema = true
# Enables syntax highlighting. ;p
# enableLazySyntaxHighlighting = true
# Set the syntax highlighter to be used.
# Only valid options are "highlighterjs" or "prismjs".
# By default, it uses highlighter.js as the syntax highlighter if there's no set value.
# syntaxHighlighter = "prismjs"
# Indicates to show the icon whether the link leads to a page or a section.
# The effect is visible if `showPostsOnHome` is at least enabled.
showPageTypeIcon = true
# Shows breadcrumbs in the post.
enableBreadcrumbs = true
# Indicates if certain headers have to be styled.
# contentIsStyled = true
# Enable theme toggle (dark mode for some)
# enableThemeToggle = true
# Enable MathJax support
enableMathjax = true
# Use MathJax V2
# setMathjaxToV2 = true
# Enable client-side search engine
# enableSiteSearch = true
# Enable content reader mode
enableContentReaderMode = true
# Enable compact mode for the list templates
enableCompactListMode = true