-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
142 lines (106 loc) · 3.57 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
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
# The URL the site will be built for
base_url = "https://SuperTails.github.io"
default_language = "en"
theme = "anatole-zola"
# 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 = false
#generate_feed = true
#feed_filename = "atom.xml"
# feed_limit = 20
#minify_html = false
#hard_link_static = false
[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_syntaxes_and_themes = []
highlight_theme = "gruvbox-dark"
render_emoji = true
external_links_target_blank = true
external_links_no_follow = true
external_links_no_referrer = true
smart_punctuation = false
[extra]
author = "Carson Swoveland"
# Use a square image (same height as width)
avatar = "images/dangerzonecropped.jpg"
resume = "Resume.pdf"
# To use a favicon convert your image to https://realfavicongenerator.net/,
# then download and copy the package to static/images/favicon
favicon = true
locale = "en_US"
# Ataraxia uses Bootstrap icons,
# you can go to https://icons.getbootstrap.com/ to find the full list
[extra.menus]
nav = [
{ name = "Home", url = "@/_index.md", icon = "bi-house" },
{ name = "Projects", url = "@/projects/_index.md", icon = "bi-terminal" },
{ name = "About Me", url = "@/about/index.md", icon = "bi-person" },
]
[extra.social]
author_link = "https://SuperTails.github.io"
#twitter = "@user"
github = "SuperTails"
linkedin = "carson-swoveland-b45116231"
email = "[email protected]"
#{ name = "Email", url = "mailto:[email protected]", icon = "bi-envelope-fill" },
#]
[extra.seo]
google_analytics = "G-X7Q1QJMZ5G"
# TODO:
# google_search_console = "0123457890abcdefg"
[extra.comments]
disqus = "user"
[extra.copyright]
name = "CC BY 4.0"
url = "https://creativecommons.org/licenses/by/4.0/"
[languages]
[languages.en]
title = "Carson Swoveland"
description = "Computer Engineer, Software Developer, Tinkerer"
generate_feeds = true
feed_filenames = ["atom.xml"]
taxonomies = [
{ name = "tags", feed = true, paginate_by = 5 },
]
[languages.en.translations]
home = "Home"
about = "About"
archive = "Archive"
date_format = "%Y-%m-%d"
post = "Post"
category = "Category"
tag = "Tag"
search = "Search"
404_message = "Page not found"
by = "By"
posted = "Posted"
updated = "Updated"
categories = "Categories"
tags = "Tags"
share = "Share"
next = "Next"
previous = "Previous"
short_copyright = "Some rights reserved."
full_copyright = """\
Except where otherwise noted, the blog posts on this site are \
licensed under the Creative Commons Attribution 4.0 International \
(CC BY 4.0) License by the author.\
"""
[search]
include_title = true
include_description = false
include_path = false
include_content = true
# truncate_content_length = 100
[link_checker]
# skip_prefixes = []
# skip_anchor_prefixes = []
internal_level = "error"
external_level = "error"
[slugify]
paths = "on"
taxonomies = "on"
anchors = "on"