-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
63 lines (51 loc) · 1.96 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
# The URL the site will be built for
base_url = "http://www.jacomago.dev"
# The site title and description; used in feeds by default.
title = "stuff i did"
description = "blog of things sky/jacomago has done in the past"
# The default language; used in feeds.
default_language = "en"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# When set to "true", a feed is automatically generated.
generate_feed = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
# The taxonomies to be rendered for the site and their configuration of the default languages
# Example:
# taxonomies = [
# {name = "tags", feed = true}, # each tag will have its own feed
# {name = "tags"}, # you can have taxonomies with the same name in multiple languages
# {name = "categories", paginate_by = 5}, # 5 items per page for a term
# {name = "authors"}, # Basic definition: no feed or pagination
# ]
#
taxonomies = [
{ name = "tags", feed = true }, # each tag will have its own feed
]
[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
# Various slugification strategies, see below for details
# Defaults to everything being a slug
[slugify]
paths = "on"
taxonomies = "on"
anchors = "on"
# Whether to remove date prefixes for page path slugs.
# For example, content/posts/2016-10-08_a-post-with-dates.md => posts/a-post-with-dates
# When true, content/posts/2016-10-08_a-post-with-dates.md => posts/2016-10-08-a-post-with-dates
paths_keep_dates = true
[extra]
# Put all your custom variables here
menu = [
{url="/archive", name="archive"},
{url="/tags", name="tags"},
{url="/about", name="about"}
]
socials = [
{name="twitter", url="http://twitter.com/jacomago"},
{name="github", url="https://github.com/jacomago"},
{name="RSS", url= "atom.xml"}
]