-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
80 lines (58 loc) · 2.37 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
# The URL the site will be built for
base_url = "https://bgillespie.github.io"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
theme = "zerm"
[extra]
# Put all your custom variables here
author = "Brian Gillespie"
# Show author's name in blog post meta data.
show_author = false
# Show categories a blog post is marked with in its meta data.
show_categories = true
# Show tags a blog post is marked with in its meta data.
show_tags = true
# Theme color. You can have any color you want, so long as it's...
# ["orange", "blue", "red", "green", "pink"]
theme_color = "orange"
# Custom css to style over the defaults. This is useful when you only have a
# few small tweaks to make rather than a major rehaul to the theme.
# It would be best to make this a proper .sass or .scss file in sass/ rather
# than placing in static/
# custom_css = "custom.css"
# How many menu items to show on desktop. if you set this to 0, only submenu
# button will be visible.
show_menu_items = 2
# set theme to full screen width.
full_width = true
# center theme with default width.
center = false
# set a custom favicon. Must be placed in root of static/ directory...
# favicon = ""
# Set a custom preview image for your website when posted as a link.
# Must be placed in root of static/ directory...
# og_preview_img = ""
# Copyright notice if desired. Defaults to
# copyright = "copyright notice here"
# What is displayed in the top left corner of the website. Default is zerm.
logo_text = "bjg"
# Link in logo. Default returns you to $BASE_URL.
logo_home_link = "/"
# Menu items to display. You define a url and the name of the menu item.
# NOTE: `$BASE_URL/` must be included in the url name.
main_menu = [
{url="/about/", name="about"},
{url="/contact/", name="contact"},
]
# Displayed as title of drop-down menu when size of main_menu > show_menu_items.
menu_more = "show more"
# Displayed after teaser text for a blog post.
read_more = "read more"
# not currently used from previous theme, but leaving here for now in case I
# feel like adding it.
read_other_posts = "read other posts"