-
Notifications
You must be signed in to change notification settings - Fork 0
/
hugo.toml
101 lines (80 loc) · 2.32 KB
/
hugo.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
baseURL = 'https://www.devopsderek.com/'
languageCode = 'en-us'
title = 'devops Derek'
theme = 'typo'
copyright = 'This work is licensed under CC BY-SA 4.0'
# Google analytics code
googleAnalytics = 'G-FLLW615HYM'
enableRobotsTXT = true
[taxonomies]
tag = 'tags'
[permalinks]
[permalinks.page]
# The format shown here is the same one Jekyll/Octopress uses by default.
posts = '/posts/:year/:month/:day/:title/'
[permalinks.section]
posts = '/posts/'
[params]
# Meta description
description = 'A Tech Blog'
# Appearance settings
theme = 'auto'
colorPalette = 'catpuccin'
hideHeader = false
# Intro on main page, content is markdown
homeIntroTitle = 'Welcome!'
homeIntroContent = """
devops Derek is a place to keep notes related to things I am working on. It
makes it easier to later `grep -iR something_I_did_in_the_past ./`. Hopefully,
it is also useful to others.
"""
# Page footer
showFooter = true
footerContent = """
**Derek Tamsen** | This work is licensed under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1) | _Powered by [Hugo](https://gohugo.io) with theme by [tomfran/typo](https://github.com/tomfran/typo)_
"""
# Collection to display on home
homeCollectionTitle = 'Posts'
homeCollection = 'posts'
# Lists parameters
paginationSize = 100
listSummaries = true
listDateFormat = 'Jan 2, 2006'
# Breadcrumbs
breadcrumbs = true
# Giscus comments
[params.giscus]
enable = true
repo = 'derektamsen/derektamsen.github.io-hugo'
repoid = 'MDEwOlJlcG9zaXRvcnkyOTEyNjEyMw=='
category = 'Post Comments'
categoryid = 'DIC_kwDOAbxt684CjJ8V'
mapping = 'pathname'
theme = 'preferred_color_scheme'
[params.author]
email = '[email protected]'
name = 'Derek Tamsen'
# Social icons
[[params.social]]
name = 'bluesky'
url = 'https://bsky.app/profile/devopsderek.com'
[[params.social]]
name = 'github'
url = 'https://github.com/derektamsen'
[[params.social]]
name = 'linkedin'
url = 'https://www.linkedin.com/in/derektamsen/'
# Main menu pages
[[params.menu]]
name = 'home'
url = '/'
[[params.menu]]
name = 'posts'
url = '/posts'
[[params.menu]]
name = 'about'
url = '/about'
# Syntax highligth on code blocks
[markup]
[markup.highlight]
style = 'catppuccin-frappe'