From 536d364573fc203ea449bee33d66671f516984b0 Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Mon, 6 Nov 2023 19:33:51 +0200 Subject: Initial commit of project migration. Changes to be committed: new file: config.toml new file: content/blog/_index.md new file: content/blog/first.md new file: content/blog/second.md new file: description new file: templates/base.html new file: templates/blog-page.html new file: templates/blog.html new file: templates/index.html --- templates/base.html | 17 +++++++++++++++++ templates/blog-page.html | 9 +++++++++ templates/blog.html | 13 +++++++++++++ templates/index.html | 8 ++++++++ 4 files changed, 47 insertions(+) create mode 100644 templates/base.html create mode 100644 templates/blog-page.html create mode 100644 templates/blog.html create mode 100644 templates/index.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..59eaaae --- /dev/null +++ b/templates/base.html @@ -0,0 +1,17 @@ + + + +
+ +{{ page.date }}
+{{ page.content | safe }} +{% endblock content %} diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..8e3cc52 --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block content %} +Click here to see my posts.
+{% endblock content %} -- cgit v1.2.3