commit 995dbd9536c2ecfb49896ba4187c44f45932079e Author: Atlas Cove Date: Thu Mar 24 15:11:03 2022 +0000 initial commit diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6c0764e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,6 @@ +root=true +[*] +charset=utf-8 +end_of_line=cr +[*.html] +indent_size=0 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a48cf0d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..8b48667 --- /dev/null +++ b/config.toml @@ -0,0 +1,16 @@ +# The URL the site will be built for +base_url = "https://atlas48.sdf.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/robots.txt b/robots.txt new file mode 100644 index 0000000..b345a1a --- /dev/null +++ b/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Allow: / +Sitemap: {{ get_url(path="sitemap.xml") }} diff --git a/sass/main.sass b/sass/main.sass new file mode 100644 index 0000000..c56b297 --- /dev/null +++ b/sass/main.sass @@ -0,0 +1,3 @@ +body + background: black + color: white diff --git a/templates/bare.html b/templates/bare.html new file mode 100644 index 0000000..4456821 --- /dev/null +++ b/templates/bare.html @@ -0,0 +1,20 @@ + + + + + + {% if page.title %} + {{ page.title }} + {% else %} + {{ site.name }} — {{ site.description }} + {% endif %} + + {% if site.highlighter %} + + {% endif %} + + + + {{ content }} + + diff --git a/templates/comments.html b/templates/comments.html new file mode 100644 index 0000000..0ab5d94 --- /dev/null +++ b/templates/comments.html @@ -0,0 +1,17 @@ +
+
+ + + + + comments powered byDisqus +
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..d3c8bfc --- /dev/null +++ b/templates/index.html @@ -0,0 +1 @@ +{%- import "macros.html" as m -%} {% if title in page %} {{ page.title }} {% else %} {{ extra.name }} — {{ extra.description }} {% endif %} {% if site.highlighter %} {% endif %} {% block content %} {{ page.content }} {% endblock %} \ No newline at end of file diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..f64023b --- /dev/null +++ b/templates/page.html @@ -0,0 +1,5 @@ +--- +layout: default +--- +

{{ page.title }}{{ page.shortUrl }}

+{{ content }}