From 7d579c43e7eb0eb643ec460906f44a9ccae491fc Mon Sep 17 00:00:00 2001 From: Atlas Cove Date: Thu, 4 Aug 2022 02:21:41 +0100 Subject: [PATCH] Initial Commit --- .gitmodules | 3 +++ config.toml | 16 ++++++++++++++++ content/_index.md | 6 ++++++ sass/blank-main.sass | 4 ++++ static/makina.svg | 5 +++++ templates/blank.html | 12 ++++++++++++ themes/book | 1 + 7 files changed, 47 insertions(+) create mode 100644 .gitmodules create mode 100644 config.toml create mode 100644 content/_index.md create mode 100644 sass/blank-main.sass create mode 100644 static/makina.svg create mode 100644 templates/blank.html create mode 160000 themes/book diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..aace176 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/book"] + path = themes/book + url = https://github.com/getzola/book.git diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..7d03ec3 --- /dev/null +++ b/config.toml @@ -0,0 +1,16 @@ +# The URL the site will be built for +base_url = "https://makina.neocities.org/" + +# 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 + +[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 diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..a377b30 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,6 @@ ++++ +draft = false +template = "blank.html" +title "Homepage of the Makinist Temple" ++++ +![makina.svg] diff --git a/sass/blank-main.sass b/sass/blank-main.sass new file mode 100644 index 0000000..ee009cd --- /dev/null +++ b/sass/blank-main.sass @@ -0,0 +1,4 @@ +body + font-family: sans-serif +.head + margin: auto diff --git a/static/makina.svg b/static/makina.svg new file mode 100644 index 0000000..aed3f38 --- /dev/null +++ b/static/makina.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/templates/blank.html b/templates/blank.html new file mode 100644 index 0000000..d15d29c --- /dev/null +++ b/templates/blank.html @@ -0,0 +1,12 @@ + + + +{{ title }} + + + +{{ content }} + + diff --git a/themes/book b/themes/book new file mode 160000 index 0000000..f84330c --- /dev/null +++ b/themes/book @@ -0,0 +1 @@ +Subproject commit f84330c575f53f3ac017e71190b2275eaa804ae7