-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
79 lines (68 loc) · 3.09 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
# The URL the site will be built for
base_url = "https://jsteuernagel.de"
title = "Jana"
author = "Jana"
description = "My personal blog where about whatever I want, but mainly about my experiments with different technologies."
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
theme = "PaperMod"
taxonomies = [
{name = "tags"},
]
generate_feeds = true
feed_filenames = [ "atom.xml" ]
[search]
# Whether to include the title of the page/section in the index
include_title = true
# Whether to include the description of the page/section in the index
include_description = false
# Whether to include the path of the page/section in the index
include_path = false
# Whether to include the rendered content of the page/section in the index
include_content = true
# At which character to truncate the content to. Useful if you have a lot of pages and the index would
# become too big to load on the site. Defaults to not being set.
# truncate_content_length = 100
# Wether to produce the search index as a javascript file or as a JSON file
# Accepted value "elasticlunr_javascript" or "elasticlunr_json"
index_format = "elasticlunr_json"
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
[extra]
# Put all your custom variables here
[extra.papermod]
title = "Jana"
default_theme = "auto"
theme = "else"
language_direction = "auto"
keywords = ["keyword1", "keyword2", "keyword3"]
show_theme_toggle = true
show_scroll_to_top = true
show_code_copy_buttons = true
show_reading_time = true
show_word_count = false
show_post_nav_links = true
show_post_meta = true
default_toc_open = false
edit_post_url = "https://github.com/cydave/zola-theme-papermod/tree/master"
#copyright = ""
date_format = "%Y-%m-%d"
navigation = [
{ url = "$BASE_URL/archive", title = "Archive" },
{ url = "$BASE_URL/tags", title = "Tags" },
{ url = "$BASE_URL/search", title = "Search" },
#{ url = "https://getzola.com/", title = "Zola", is_external = true }
]
home_title = "About me"
home_content = "Hi 👋<br>I'm Jana. I'm very interested in technology and regularly hyperfocus on some nieche topic. My main focus most of the time is around servers and network infrastructure. Yet this blog has no real focus and contains whatever I feel like writing about every once in a while.<br>You can find more about me under the following links. I am most active on Mastodon and regularly write threads about things that really should be their own blog post, but never quite make it."
social_icons = [
{ url = "https://social.jsteuernagel.de/@jana", title = "Mastodon", icon = "mastodon" },
{ url = "https://github.com/itz-Jana", title = "GitHub", icon = "github" },
{ url = "https://gitea.jsteuernagel.de/jana", title = "Gitea", icon = "gitea" },
{ url = "https://anilist.co/user/ItzJana/", title = "Anilist", icon = "anilist" },
{ url = "$BASE_URL/atom.xml", title = "RSS", icon = "rss" },
]