/ config.toml
config.toml
 1  # The URL the site will be built for
 2  base_url = "https://totikom.github.io/"
 3  
 4  theme = "terminimal"
 5  
 6  # Whether to automatically compile all Sass files in the sass directory
 7  compile_sass = true
 8  
 9  # Whether to build a search index to be used later on by a JavaScript library
10  build_search_index = true
11  
12  generate_feeds = true
13  feed_filenames = ["rss.xml", "atom.xml"]
14  
15  taxonomies = [
16      {name = "tags"},
17  ]
18  
19  [markdown]
20  # Whether to do syntax highlighting
21  # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
22  highlight_code = true
23  bottom_footnotes = true
24  
25  [extra]
26  # Put all your custom variables here
27  
28  # Author name: when specified, modifies the default
29  # copyright text. Apart from author, it will
30  # contain current year and a link to the theme.
31  author = "Eugene Lomov"
32  accent_color = "pink"
33  background_color = "dark"
34  logo_text = "Quantum creep"
35  page_titles = "page_only"
36  
37  # menu is enabled by adding menu_items (optional)
38  menu_items = [
39      # each of these is optional, name and url are required
40      # $BASE_URL is going to be substituted by base_url from configuration
41      {name = "blog", url = "$BASE_URL/blog"},
42  
43      # tags should only be enabled if you have "tags" taxonomy
44      # see documentation below for more details
45      {name = "tags", url = "$BASE_URL/tags"},
46      {name = "archive", url = "$BASE_URL/archive"},
47      {name = "about me", url = "$BASE_URL"},
48      {name = "rss", url = "$BASE_URL/rss.xml" },
49      {name = "atom", url = "$BASE_URL/atom.xml" }
50  
51      # set newtab to true to make the link open in new tab
52      #{name = "github", url = "url-to-your-github", newtab = true},
53  ]