From d300415652d513a54c214c894e996036d2c999ce Mon Sep 17 00:00:00 2001
From: foswret
Date: Sat, 21 Mar 2026 21:38:23 -0500
Subject: first commit
---
templates/base.html | 17 +++++++++++++++++
templates/index.html | 8 ++++++++
templates/post-page.html | 10 ++++++++++
templates/posts.html | 12 ++++++++++++
templates/robots.txt | 4 ++++
theme.toml | 11 +++++++++++
6 files changed, 62 insertions(+)
create mode 100644 templates/base.html
create mode 100644 templates/index.html
create mode 100644 templates/post-page.html
create mode 100644 templates/posts.html
create mode 100644 templates/robots.txt
create mode 100644 theme.toml
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..aba4506
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+ CHANGE ME
+
+
+
+
+
+ {% block content %} {% endblock content %}
+
+
+
+
+
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..560c000
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,8 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+ This is a blog made with Zola.
+
+Posts.
+{% endblock content %}
diff --git a/templates/post-page.html b/templates/post-page.html
new file mode 100644
index 0000000..5bb6f40
--- /dev/null
+++ b/templates/post-page.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+
+
+{% block content %}
+
+ {{ page.title }}
+
+{{ page.date }}
+{{ page.content | safe }}
+{% endblock content %}
diff --git a/templates/posts.html b/templates/posts.html
new file mode 100644
index 0000000..cb6c14b
--- /dev/null
+++ b/templates/posts.html
@@ -0,0 +1,12 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+ {{ section.title }}
+
+
+{% endblock content %}
diff --git a/templates/robots.txt b/templates/robots.txt
new file mode 100644
index 0000000..b6ac790
--- /dev/null
+++ b/templates/robots.txt
@@ -0,0 +1,4 @@
+User-agent: *
+Disallow:
+Allow: /
+Sitemap: {{ get_url(path="sitemap.xml") }}
diff --git a/theme.toml b/theme.toml
new file mode 100644
index 0000000..cf9dead
--- /dev/null
+++ b/theme.toml
@@ -0,0 +1,11 @@
+name = "shawl"
+description = "A simple, unintrusive theme for Zola."
+
+license = "GPLv3"
+homepage = "https://foswret.com/shawl"
+
+min_version = "0.22.1"
+
+[author]
+name = "foswret"
+homepage = "https://foswret.com"
--
cgit v1.2.3