Theme installed
This commit is contained in:
parent
8c90bb2dfc
commit
9f4d78baa2
135 changed files with 2650 additions and 269 deletions
41
config.toml
41
config.toml
|
@ -1,5 +1,5 @@
|
|||
# The URL the site will be built for
|
||||
base_url = "https://aron.petau.net"
|
||||
base_url = "https://aron.petau.net/"
|
||||
|
||||
# Whether to automatically compile all Sass files in the sass directory
|
||||
compile_sass = true
|
||||
|
@ -7,10 +7,47 @@ compile_sass = true
|
|||
# Whether to build a search index to be used later on by a JavaScript library
|
||||
build_search_index = true
|
||||
|
||||
minify_html = true
|
||||
|
||||
taxonomies = [
|
||||
{ name = "tags" }
|
||||
]
|
||||
|
||||
[search]
|
||||
index_format = "elasticlunr_json"
|
||||
|
||||
|
||||
[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
|
||||
highlight_theme = "css"
|
||||
|
||||
|
||||
[extra]
|
||||
# Put all your custom variables here
|
||||
author = "Aron Petau"
|
||||
description = "Some description, if you somehow didn't set it in page / section settings"
|
||||
logo_src = "images/logo.png" # logo src
|
||||
avatar_src = "images/aron_avatar_square.jpg" # avatar src
|
||||
index_page="index" # name of the index page. Should be one of top_menu to make things work
|
||||
top_menu = ["index","features","notes"] # Menu items
|
||||
copyright_string = "Сreated by Aron Petau in 2024 – %YEAR%"
|
||||
nonce = "${aron_allows_this}" # used for JavaScript src nonce
|
||||
|
||||
|
||||
|
||||
[extra.giscus]
|
||||
src = "https://giscus.app/client.js"
|
||||
data_repo="arontaupe/awebsite"
|
||||
data_repo_id="R_kgDOLIfXYA"
|
||||
data_category="General"
|
||||
data_category_id="DIC_kwDOLIfXYM4Ccn56"
|
||||
data_mapping="title"
|
||||
data_strict="0"
|
||||
data_reactions_enabled="0"
|
||||
data_emit_metadata="0"
|
||||
data_input_position="top"
|
||||
data_theme="//kuznetsov17.github.io/pico/css/gs_dark.css"
|
||||
data_lang="en"
|
||||
crossorigin="anonymous"
|
||||
nonce="aron_allows_this"
|
Loading…
Add table
Add a link
Reference in a new issue