-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
60 lines (45 loc) · 1.83 KB
/
config.toml
File metadata and controls
60 lines (45 loc) · 1.83 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
# The URL the site will be built for
base_url = "https://seankearney.com"
# The site title and description; used in feeds by default
title = "Sean Kearney"
description = "A modern blog built with Zola"
theme = "zola-devin"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = false
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
# When set to "true", a feed is automatically generated.
generate_feeds = true
# The filenames to use for the feeds. Used as the template filenames, too.
# Defaults to ["atom.xml"], which has a built-in template that renders an Atom 1.0 feed.
# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
feed_filenames = ["rss.xml"]
taxonomies = [
{name = "tags"}
]
# When set to "false", Sitemap.xml is not generated
generate_sitemap = true
# When set to "false", robots.txt is not generated
generate_robots_txt = true
[markdown.highlighting]
theme = "nord"
[extra]
# Blog owner configuration
blog_owner_name = "Sean Kearney"
blog_owner_image = "./images/hero.jpg"
blog_owner_description = "A seasoned technology leader, serial entrepreneur, enthusiastic coder, and sporadic blogger. Find me at"
# Social media links
social_links = [
{ name = "GitHub", url = "https://github.com/seankearney" },
{ name = "Twitter", url = "https://twitter.com/seankearney" },
{ name = "LinkedIn", url = "https://www.linkedin.com/in/skearney" },
{ name = "StackOverflow", url = "https://stackoverflow.com/users/255194/sean-kearney" }
]
google_analytics_gtag_id = "UA-74650-7"
# Navigation links shown in the header (desktop and mobile menus)
nav_links = [
{ name = "About", url = "/about" },
{ name = "Blog", url = "/post" },
{ name = "Categories", url = "/tags" },
{ name = "Archive", url = "/archive" },
]