update test

This commit is contained in:
Daniel Fichtinger 2025-06-21 22:55:36 -04:00
parent c174575111
commit 9d38ed70fb
4 changed files with 5 additions and 1 deletions

1
content/post.md Normal file
View file

@ -0,0 +1 @@
Okay, here's a post.

1
templates/footer.md Normal file
View file

@ -0,0 +1 @@
The footer content.

2
templates/header.md Normal file
View file

@ -0,0 +1,2 @@
- One
- Two

View file

@ -1,7 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block content %} {% block content %}
<h1>{{ title }}</h1> <h1>{{ metadata.title }}</h1>
<article>{{ content | safe }}</article> <article>{{ content | safe }}</article>
{% endblock %} {% endblock %}