You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
53 lines
1.5 KiB
# The URL the site will be built for |
|
base_url = "https://blog.juliobiason.me" |
|
|
|
# Whether to automatically compile all Sass files in the sass directory |
|
compile_sass = true |
|
|
|
title = "Julio Biason .Net 4.1" |
|
description = "Old school dev living in a 2.0 dev world" |
|
|
|
# theme = "nighttime" |
|
# theme = "hyde" |
|
theme = "terminimal-light" |
|
|
|
taxonomies = [ |
|
# You can enable/disable RSS |
|
{name = "categories", rss = true}, |
|
{name = "tags", rss = true}, |
|
{name = "tags", lang = "en"}, |
|
{name = "tags", lang = "pt"}, |
|
] |
|
|
|
generate_rss = 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 |
|
|
|
default_language = "en" |
|
languages = [ |
|
{code = "pt", rss = true}, |
|
{code = "pt", search = false}, |
|
] |
|
|
|
[extra] |
|
# Put all your custom variables here |
|
author = "Julio Biason" |
|
# accent_color = "cyan" |
|
logo_text = "JulioBiason.Net 4.1" |
|
use_full_hack_font = true |
|
menu_items = [ |
|
{url = "$BASE_URL", name = "English"}, |
|
{url = "$BASE_URL/pt/", name = "Português"}, |
|
{url = "$BASE_URL/announcements/about-me", name = "About Me"}, |
|
{url = "$BASE_URL/tags", name = "Tags (EN)"}, |
|
{url = "$BASE_URL/pt/tags", name = "Tags (PT)"}, |
|
{url = "$BASE_URL/quotes", name = "Quotes"}, |
|
{url = "$BASE_URL/research", name = "Research Notes"}, |
|
] |
|
after_dark_title = "JulioBiason.Net 4.1" |
|
enable_post_view_navigation = false
|
|
|