From 63a5afda03daefb45e061a055685335207f21b60 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/index.html | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 templates/index.html (limited to 'templates/index.html') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..5f14396 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,42 @@ +{% extends "base.html" %} + +{% block content %} +
+

cleberg.net

+
pub   rsa4096 2022-11-16 [SC]
+      3917 973F B159 BBB8 6194 5385 6945 1A51 7AC0 CB37
+uid           [ultimate] Christian Cleberg <hello@cleberg.net>
+
+
+

Recent Blog Posts

+ {% set section = get_section(path="blog/_index.md") %} + {% set i = 0 %} + {% for page in section.pages %} + {% if i < 3%} + {% set_global i = i + 1%} +
+ + {{ page.title }} +
+ {% endif %} + {% endfor %} +
+ All Posts → +
+
+

Everything Else

+ +
+
+

Contact

+ +
+{% endblock content %} -- cgit v1.2.3