-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.toml
87 lines (68 loc) · 2.48 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 = "https://jp-weber.family/"
languageCode = "de-at"
title = "Familie Weber: Paul, J und K"
theme = 'ezhil'
copyright = "© Paul Weber"
# Enable syntax highlighting.
pygmentsstyle = "solarized-dark"
pygmentscodefences = true
pygmentscodefencesguesssyntax = true
# Your Google analytics code.
googleAnalytics = "UA-7699331-4"
# Your Disqus sortname.
disqusShortname = "jp-weber.family"
# Number of posts to show in recent posts list (Optional). Defaults to 10.
paginate = 10
[params]
# Blog subtitle which appears below blog title. Supports markdown.
subtitle = "Texte übers Radfahren, Programmieren und Kochen"
# Content types which are included in home page recent posts list.
mainSections = ["posts"]
# Content types which are excludes Disqus comments.
disableDisqusTypes = ["page"]
# If social media links are enabled then enable this to fetch icons from CDN instead of hosted on your site.
featherIconsCDN = true
# Specify favicon (icons/i.png maps to static/icons/i.png). No favicon if not defined.
favicon = "/icons/jpkw.png"
# Switch to dark mode or auto detect mode from OS (Optional).
# "dark" will set mode to dark and "auto" will switch to dark mode if OS is in dark mode.
mode = "auto" # "dark" or "auto"
# Custom CSS added to default styles. Files added to `static` folder is copied as it is to
# root by Hugo. For example if you have custom CSS file under `static/css/custom.css` then
# you can specify custom css path as `css/custom.css`.
customCSS = "css/custom.css"
# Custom CSS added to dark mode style.
customDarkCSS = "css/custom-dark.css"
# Custom list of Javascript files to load. Just like custom CSS you can place js files under
# `static/js` folder and specify path here as `js/script-name.js`.
# customJS = ["js/abc.js", "js/xyz.js"]
# Main menu which appears below site header.
[[menu.main]]
name = "Blog"
url = "/"
weight = 1
#[[menu.main]]
#name = "Alle Artikel"
#url = "/posts"
#weight = 2
[[menu.main]]
name = "Über Paul Weber"
url = "/paul-weber"
weight = 3
#[[menu.main]]
#name = "Tags"
#url = "/tags"
#weight = 4
# Social media links which shows up on site header.
# Uses feather icons for icons. You can [search icon names from here](https://feathericons.com/).
[[params.social]]
name = "Github"
icon = "github"
url = "https://github.com/000panther"
[[params.social]]
name = "Mastodon"
icon = "mastodon"
url = "https://ooe.social/@000panther"
# Enable tags.
[taxonomies]
tag = "tags"