-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
80 lines (60 loc) · 2.1 KB
/
config.toml
File metadata and controls
80 lines (60 loc) · 2.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
base_url = "https://bwandii.io"
theme = "apollo"
taxonomies = [{ name = "tags" }]
compile_sass = true
build_search_index = false
# default_language = "en"
author = "Brandon Espina"
# The site title and description; used in feeds by default.
title = "brandon espina (wip)"
description = "init description"
# When set to "true", a feed is automatically generated.
generate_feeds = false
# 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 = ["atom.xml"]
# # for later
# # 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]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
# [languages.zh]
# title = "brandon espina/周文博"
# description = "我的中文不太好,可是我很喜欢学习。我会尽力翻译。"
# [languages.en.translations]
# language_name = "english"
# about = "about"
# home = "home"
# tags = "tags"
# projects = "projects"
# [languages.zh.translations]
# language_name = "中文"
# home = "首页"
# about = "关于"
# tags = "标签"
# projects = "项目"
[extra]
meta = [
{property = "og:title", content = "the og title"},
{property = "og:description", content = "the og description"},
]
favicon = "icons/favicon-32x32.png"
toc = true
dynamic_note = true
theme = "toggle"
socials = [
{ name = "github", url = "https://github.com/brespina/", icon = "github" },
{ name = "linkedin", url = "https://www.linkedin.com/in/brandon-espina/", icon = "linkedin" },
{ name = "email", url = "mailto:brandon.r.espina@gmail.com", icon = "email" },
]
menu = [
{ name = "/courses", url = "/courses", weight = 1},
{ name = "/projects", url = "/projects", weight = 2 },
{ name = "/posts", url = "/posts", weight = 3 },
{ name = "/tags", url = "/tags", weight = 4 },
]