removed unnecessary templates
All checks were successful
/ deploy (push) Successful in 16s

This commit is contained in:
Daniel Fichtinger 2025-07-14 23:02:24 -04:00
parent 14b43d615b
commit 247afd377a
5 changed files with 0 additions and 88 deletions

View file

@ -1,19 +0,0 @@
{% extends "base.html" %} {% block content %}
{% if metadata.show_title %}
{% include "title.html" %}
{% endif %}
<article>{{ content | safe }}</article>
{% if post_list %}
<ul>
{% for item in post_list %}
<li>
<time class="post-list-date" datetime="{{ item.metadata.date | safe }}"
>{{ item.metadata.date | safe}}</time>: <a href="/{{ item.url }}"
>{{ item.metadata.title }}</a>
</li>
{% endfor %}
</ul>
{% endif %} {% endblock %}