commit 33becf960f24e66ad0ce7a2e121656a932ff5831 Author: Julio Biason Date: Mon Nov 19 15:19:44 2018 -0200 Zola (Gutenberg) blog diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..9ffd6e7 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/after-dark"] + path = themes/after-dark + url = git@github.com:getzola/after-dark.git diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..046b01e --- /dev/null +++ b/config.toml @@ -0,0 +1,33 @@ +# The URL the site will be built for +base_url = "https://blog.juliobiason.net" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = true + +title = "JulioBiason.Net 4.0" +description = "Old school dev living in a 2.0 dev world" + +theme = "after-dark" + +taxonomies = [ + # You can enable/disable RSS + {name = "categories", rss = true}, + {name = "tags", 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 + +[extra] +# Put all your custom variables here +author = "Julio Biason" +after_dark_menu = [ + {url = "$BASE_URL", name = "Home"}, + {url = "$BASE_URL/tags", name = "Tags"}, + +] +after_dark_title = "JulioBiason.Net 4.0" diff --git a/templates/shortcodes/note.html b/templates/shortcodes/note.html new file mode 100644 index 0000000..1fd3dd0 --- /dev/null +++ b/templates/shortcodes/note.html @@ -0,0 +1,3 @@ +
+ {{ body }} +
diff --git a/themes/after-dark b/themes/after-dark new file mode 160000 index 0000000..3057a50 --- /dev/null +++ b/themes/after-dark @@ -0,0 +1 @@ +Subproject commit 3057a5080b5370cfa65aabf2136c9500b0b09926