From 8a2dadcd2572fb5f472c91e8bc3957882fa48320 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Tue, 14 Oct 2025 19:15:51 +0200 Subject: Open the blog --- themes/templates/blog.html | 7 +++++++ themes/templates/default.html | 34 ++++++++++++++++++++++++++++++++++ themes/templates/header.html | 3 +++ themes/templates/page.html | 6 ++++++ themes/templates/post.html | 19 +++++++++++++++++++ themes/templates/tag.html | 9 +++++++++ 6 files changed, 78 insertions(+) create mode 100644 themes/templates/blog.html create mode 100644 themes/templates/default.html create mode 100644 themes/templates/header.html create mode 100644 themes/templates/page.html create mode 100644 themes/templates/post.html create mode 100644 themes/templates/tag.html (limited to 'themes/templates') diff --git a/themes/templates/blog.html b/themes/templates/blog.html new file mode 100644 index 0000000..6f5c48d --- /dev/null +++ b/themes/templates/blog.html @@ -0,0 +1,7 @@ +
+ $for(posts)$ + $partial("_includes/components/post.html")$ + $endfor$ +
+ +$partial("_includes/components/pagination.html")$ diff --git a/themes/templates/default.html b/themes/templates/default.html new file mode 100644 index 0000000..80e9bd1 --- /dev/null +++ b/themes/templates/default.html @@ -0,0 +1,34 @@ + + + + + + + + + + $partial("_includes/meta.html")$ + + $title$ | Flevum + + + + + + + + $partial("_includes/partials/burgerMenu.html")$ + + $partial("_includes/layout/header.html")$ + + $partial("_includes/layout/navigation.html")$ + + $partial("_includes/partials/headerSeparator.html")$ + +
+ $body$ +
+ + $partial("_includes/layout/footer.html")$ + + diff --git a/themes/templates/header.html b/themes/templates/header.html new file mode 100644 index 0000000..6f5e1fe --- /dev/null +++ b/themes/templates/header.html @@ -0,0 +1,3 @@ +
+

$title$

+
diff --git a/themes/templates/page.html b/themes/templates/page.html new file mode 100644 index 0000000..a1b91c9 --- /dev/null +++ b/themes/templates/page.html @@ -0,0 +1,6 @@ +
+

$title$

+
+ $body$ +
+
diff --git a/themes/templates/post.html b/themes/templates/post.html new file mode 100644 index 0000000..e9d7bbf --- /dev/null +++ b/themes/templates/post.html @@ -0,0 +1,19 @@ +
+

+ $title$ +

+ + + +
+ $body$ +
+ + +
diff --git a/themes/templates/tag.html b/themes/templates/tag.html new file mode 100644 index 0000000..a9566c7 --- /dev/null +++ b/themes/templates/tag.html @@ -0,0 +1,9 @@ +

Alle Posts mit Tag: $title$

+ +
+ $for(posts)$ + $partial("_includes/components/post.html")$ + $endfor$ +
+ +$partial("_includes/components/pagination.html")$ -- cgit v1.2.3