commit 7d579c43e7eb0eb643ec460906f44a9ccae491fc Author: Atlas Cove Date: Thu Aug 4 02:21:41 2022 +0100 Initial Commit 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