From f28c56ddd35ab468527eda2b116f300732938205 Mon Sep 17 00:00:00 2001 From: soaos Date: Fri, 3 Apr 2026 17:20:59 -0400 Subject: Initial Commit (Fresh Start) --- templates/blog.html | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 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..e454299 --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,37 @@ +{% extends "base.html" %} +{% block content %} +
+
+
📖 Blog
+
+ +
+
+
+

+ Welcome to my blog! This is where I'll post longer content about stuff I'm + working on. I'm working out some channels for posting day-to-day short + form shit too so keep an eye out for that. +

+

Latest Posts

+
+
    + {% for year, posts in section.pages | group_by(attribute="year") %} +
  • +
    + {{ year }} +
      + {% for post in posts %} +
    • + {{post.title}} - {{post.date}} +
    • + {% endfor %} +
    +
    +
  • + {% endfor %} +
+
+
+
+{% endblock content %} \ No newline at end of file -- cgit v1.3-2-g0d8e