-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
88 lines (74 loc) · 2.45 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
# The URL the site will be built for
base_url = "https://blog.paparelli.com.ar/"
title = "Jugando a Carpediem"
description = "Alberto Paparelli's personal blog"
default_language = "en"
theme = "no-style-please"
generate_sitemap = true
generate_feeds = true
generate_robots_txt = true
# 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
taxonomies = [
{ name = "tags" },
{ name = "categories" },
{ name = "contexts" },
]
[markdown]
highlight_code = true
[extra]
# trailing_slash = true
# Put all your custom variables here
author = "Alberto Paparelli"
list_pages = true
no_list_date = false
twitter_card = true
header_nav = [
{ name = "~home", url = "/" },
{ name = "#tags", url = "/tags" },
{ name = "+categories", url = "/categories" },
#{ name = "@contexts", url = "/contexts" },
#{ name = "example", url = "http://example.com", new_tab=true },
#{ name = "Linkedin", url = "https://www.linkedin.com/in/albertopaparelli/", new_tab=true },
#{ name = "Github", url = "https://github.com/riggraz", new_tab=true },
#{ name = "X", url = "https://x.com/carpedev", new_tab=true },
#{ name = "Email", url = "mailto:[email protected]", new_tab=true },
]
footer_nav = [
{ name = "< previous", url = "#" },
{ name = "webring", url = "#" },
{ name = "next >", url = "#" },
]
[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
[translations]
# Additional languages definition
# You can define language specific config values and translations:
# title, description, generate_feeds, feed_filenames, taxonomies, build_search_index
# as well as its own search configuration and translations (see above for details on those)
[languages]
# For example
# [languages.fr]
# title = "Mon blog"
# generate_feeds = true
# taxonomies = [
# {name = "auteurs"},
# {name = "tags"},
# ]
# build_search_index = false
# You can put any kind of data here. The data
# will be accessible in all templates
# Example:
# [extra]
# author = "Famous author"
#
# author value will be available using {{ config.extra.author }} in templates
#