-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
143 lines (117 loc) · 5.07 KB
/
config.toml
File metadata and controls
143 lines (117 loc) · 5.07 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# The URL the site will be built for
base_url = "https://programming-club-iitm.github.io"
title = "Programming Club IITM"
description = "We dream in algorithms"
# The default language; used in feeds.
default_language = "en"
# The site theme to use.
# theme = "codinfox-zola"
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
# The theme to use for code highlighting.
# See the Zola documentation for list of allowed values.
#highlight_theme = "base16-ocean-dark"
# When set to "true", a feed is automatically generated.
generate_feed = true
# The filename to use for the feed. Used as the template filename, too.
# Defaults to "atom.xml", which has a builtin template that renders an Atom 1.0 feed.
# There is also a builtin template "rss.xml" that renders an RSS 2.0 feed.
# feed_filename = "atom.xml"
# The number of articles to include in the feed. All items are included if
# this limit is not set (the default).
# feed_limit = 20
# When set to "true", files in the `static` directory are hard-linked. Useful for large
# static files. Note that for this to work, both `static` and the
# output directory need to be on the same filesystem. Note that the theme's `static`
# files are always copied, regardles of this setting.
# hard_link_static = false
# The taxonomies to be rendered for the site and their configuration.
# Example:
# taxonomies = [
# {name = "tags", feed = true}, # each tag will have its own feed
# {name = "tags", lang = "fr"}, # 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
# ]
# There are five variables to set:
# name = "categories", paginate_by = "", paginate_path = "", feed = true, lang = "en"
taxonomies = [
{ name = "tags", lang = "en" },
{ name = "categories", feed = true, lang = "en" },
]
# The additional languages for the site.
# Example:
# languages = [
# {code = "fr", feed = true}, # there will be a feed for French content
# {code = "fr", search = true}, # there will be a Search Index for French content
# {code = "it"}, # there won't be a feed for Italian content
# ]
#
# languages = [{ code = "it", feed = true, search = false }]
# Uncomment the lines here below to have the languages section for Zola 0.17
# [languages]
# [languages.it]
# title = "Il mio sito"
# generate_feed = true
# build_search_index = false
# 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 = false
# A list of glob patterns specifying asset files to ignore when the content
# directory is processed. Defaults to none, which means that all asset files are
# copied over to the `public` directory.
# Example:
# ignored_content = ["*.{graphml,xlsx}", "temp.*"]
#ignored_content = []
# A list of directories used to search for additional `.sublime-syntax` files.
#extra_syntaxes = []
# Optional translation object. The key if present should be a language code.
# Example:
# default_language = "fr"
#
# [translations]
# [translations.fr]
# title = "Un titre"
#
# [translations.en]
# title = "A title"
# Configuration of the link checker.
#[link_checker]
# Skip link checking for external URLs that start with these prefixes
#skip_prefixes = [
# "http://[2001:db8::]/",
#]
# Skip anchor checking for external URLs that start with these prefixes
#skip_anchor_prefixes = [
# "https://caniuse.com/",
#]
# Various slugification strategies, see Zola documentation for details
# Defauls to everything being a slug
# [slugify]
# paths = "on"
# taxonomies = "on"
# anchors = "on"
# Optional translation object. Keys should be language codes.
#[translations]
###
# All the custom theme variables here below
# All these variables should be set in your config.toml
[extra]
logo = "/pclogo.jpg"
version = "1.0.0"
copyrightyear = "2024"
# Puglins
mathjax = true # whether support mathjax
google_analytics_token = "" # a UA-00000000-1 like code or leave blank if you don't want google analytics
disqus_short_name = "" # leave blank if you don't want disqus
# Where are tags and categories displayed
tag_page = "/tags/"
category_page = "/categories/"
# hero
image = "/img/banner.png" # image for the home page
caption = "Built using <a href=\"https://www.getzola.org/\">Zola</a> using the <a href=\"https://codinfox-zola.vercel.app/\">codinfox-zola</a> theme. © <a href=\"https://www.programming-club-iitm.github.io\">2024 - present Programming Club IITM</a>" # caption for the home page image
#
# show or not the reading time based on https://help.medium.com/hc/en-us/articles/214991667-Read-time
read_time = true