From 9d38ed70fb7027be7c9fa63f7f8f0bef409a76ad Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 21 Jun 2025 22:55:36 -0400 Subject: [PATCH] update test --- content/post.md | 1 + templates/footer.md | 1 + templates/header.md | 2 ++ templates/post.html | 2 +- 4 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 content/post.md create mode 100644 templates/footer.md create mode 100644 templates/header.md diff --git a/content/post.md b/content/post.md new file mode 100644 index 0000000..e5c5f17 --- /dev/null +++ b/content/post.md @@ -0,0 +1 @@ +Okay, here's a post. diff --git a/templates/footer.md b/templates/footer.md new file mode 100644 index 0000000..653482d --- /dev/null +++ b/templates/footer.md @@ -0,0 +1 @@ +The footer content. diff --git a/templates/header.md b/templates/header.md new file mode 100644 index 0000000..a0e3630 --- /dev/null +++ b/templates/header.md @@ -0,0 +1,2 @@ +- One +- Two diff --git a/templates/post.html b/templates/post.html index eb5c191..795eb4a 100644 --- a/templates/post.html +++ b/templates/post.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block content %} -

{{ title }}

+

{{ metadata.title }}

{{ content | safe }}
{% endblock %}