From 8628a4ae2e7c8998c8d2ffe2ecc51f2624aa66b1 Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Sat, 18 Nov 2023 12:15:16 +0200 Subject: Massive changes - migrating to Hermit with a few tweaks. Changes to be committed: new file: .gitignore modified: .gitmodules modified: config.toml new file: content/about.md deleted: content/blog/_index.md deleted: content/blog/first.md deleted: content/blog/second.md new file: content/posts/_index.md new file: content/posts/code_test.md new file: content/posts/good_first_post.md new file: content/posts/later_posts.md new file: content/posts/typography.md deleted: description deleted: index.html deleted: public/blog/first/index.html deleted: public/blog/index.html deleted: public/blog/second/index.html deleted: public/elasticlunr.min.js deleted: public/search_index.en.js deleted: public/typography.css new file: sass/_animate.scss new file: sass/_icons.scss new file: sass/_normalize.scss new file: sass/_predefined.scss new file: sass/_syntax.scss new file: sass/style.scss new file: static/favicon-32x32.png new file: static/favicon.ico new file: static/js/main.js modified: templates/404.html deleted: templates/base.html deleted: templates/blog-page.html deleted: templates/blog.html new file: templates/index.html new file: templates/macros.html new file: templates/page.html new file: templates/section.html new file: templates/tags/list.html new file: templates/tags/single.html new file: themes/404.html new file: themes/config.toml deleted: themes/hermit_zola --- themes/404.html | 1 + themes/config.toml | 25 +++++++++++++++++++++++++ themes/hermit_zola | 1 - 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 themes/404.html create mode 100644 themes/config.toml delete mode 160000 themes/hermit_zola (limited to 'themes') diff --git a/themes/404.html b/themes/404.html new file mode 100644 index 0000000..882327e --- /dev/null +++ b/themes/404.html @@ -0,0 +1 @@ +404 Police Door not found. diff --git a/themes/config.toml b/themes/config.toml new file mode 100644 index 0000000..68fa938 --- /dev/null +++ b/themes/config.toml @@ -0,0 +1,25 @@ +# Theme used +theme = "emily_zola_theme" + +# The URL the site will be built for +base_url = "https://alphara.art" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = true + +# Whether to build a search index to be used later on by a JavaScript library +build_search_index = true + +# RSS feed generation +generate_feed = true + +[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 + +[extra] +# Put all your custom variables here + +# MathJax rendering support +math = true diff --git a/themes/hermit_zola b/themes/hermit_zola deleted file mode 160000 index 57063f8..0000000 --- a/themes/hermit_zola +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 57063f89ca7a5765a822ec695ab001815105881b -- cgit v1.2.3