From 74992aaa27eb384128924c4a3b93052961a3eaab Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sat, 27 Apr 2024 17:01:13 -0500 Subject: test conversion back to markdown --- templates/blog.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 templates/blog.html (limited to 'templates/blog.html') diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..184587b --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block content %} +

{{ section.title }}

+

Use Ctrl + F to search blog post titles for keywords.

+

You can also add the Atom RSS Feed to your feed reader.

+{% set post_date = "1970-01-01" | date(format="%Y") %} +{% for page in section.pages %} + {% if post_date != page.date | date(format="%Y") %} + {% set_global post_date = page.date | date(format="%Y") %} +

{{ post_date }}

+ {% endif %} +
+ + {{ page.title }} +
+{% endfor %} +{% endblock content %} -- cgit v1.2.3-70-g09d2