-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
143 lines (115 loc) · 3.43 KB
/
config.toml
File metadata and controls
143 lines (115 loc) · 3.43 KB
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
baseurl = "https://blog.gitgud.sh"
title = "Git Gud"
languageCode = "en-us"
theme = "hello-friend-ng"
paginate = 10
rssLimit = 10
copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License."
PygmentsCodeFences = true
PygmentsStyle = "monokai"
archetypeDir = "archetypes"
contentDir = "content"
dataDir = "data"
layoutDir = "layouts"
publishDir = "public"
buildDrafts = false
buildFuture = false
buildExpired = false
canonifyURLs = true
enableRobotsTXT = true
enableGitInfo = true
enableEmoji = true
enableMissingTranslationPlaceholders = false
disableRSS = false
disableSitemap = false
disable404 = false
disableHugoGeneratorInject = false
[permalinks]
posts = "/posts/:year/:month/:title/"
[author]
name = "parsec"
[params]
dateform = "Jan 2, 2006"
dateformShort = "Jan 2"
dateformNum = "2006-01-02"
dateformNumTime = "2006-01-02 15:04"
defaultTheme = "dark"
# Subtitle for home
homeSubtitle = "A blog about my journey through tech, and the things I learn along the way."
gitUrl = "https://github.com/parsec/blog/commit/"
# Enable theme toggle
#
# This options enables the theme toggle for the theme.
# Per default, this option is off.
# The theme is respecting the prefers-color-scheme of the operating systeme.
# With this option on, the page user is able to set the scheme he wants.
enableThemeToggle = true
# Set disableReadOtherPosts to true in order to hide the links to other posts.
disableReadOtherPosts = false
# Enable sharing buttons, if you like
enableSharingButtons = false
# Metadata mostly used in document's head
description = "My Blog!"
keywords = "homepage, blog"
images = [""]
[params.footer]
trademark = true
rss = true
copyright = true
author = true
topText = []
bottomText = [
"Powered by <a href=\"http://gohugo.io\">Hugo</a>",
"Made with ❤ by <a href=\"https://github.com/rhazdon\">Djordje Atlialp</a>"
]
# Social icons
[[params.social]]
name = "twitter"
url = "https://twitter.com/p4rsec_"
[[params.social]]
name = "email"
url = "mailto:seth@beckman.sh"
[[params.social]]
name = "github"
url = "https://github.com/parsec"
[[params.social]]
name = "linkedin"
url = "https://www.linkedin.com/in/sbeckman00/"
[[params.social]]
name = "polywork"
url = "https://www.polywork.com/parsec"
[taxonomies]
category = "blog"
series = "series"
tag = "tags"
[languages]
[languages.en]
title = "Git Gud"
subtitle = "A blog about my journey through tech, and the things I learn along the way."
keywords = ""
copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
readOtherPosts = "Read other posts"
writtenBy = "Written by"
readMore = "Read more"
[languages.en.params.logo]
logoMark = ">"
logoText = "$ cd /blog.gitgud.sh/"
logoHomeLink = "/"
# or
#
# path = "/img/your-example-logo.svg"
# alt = "Your example logo alt text"
# And you can even create generic menu
[menu]
[[menu.main]]
identifier = "about"
name = "About"
url = "/about"
[[menu.main]]
identifier = "blog"
name = "Blog"
url = "/posts"
[[menu.main]]
identifier = "resume"
name = "Resume"
url = "/resume.pdf"