Neovim theme is a neovim like theme for zola.
exemple: https://super-botman.github.io
cd themes
git clone https://github.com/Super-Botman/neovim-theme.git
then enable it in your config
theme = "neovim-theme"
You can setup the blog name with config file in extra
[extra]
blog_name = "name"
You can add some custom javascript function with this parameter:
[extra]
custom_script = "<path>.js"
then you just add a file static/js/custom_script.js
and define your custom functions like this:
// add special commands
function custom_commands(command, args){
...
}
// add special init routine
function custom_init(){
...
}
And for css
[extra]
custom_css = "<path>.css"