daily + description field

This commit is contained in:
mtgmonkey
2025-08-06 00:01:31 -04:00
parent 2820410127
commit 792c670713
5 changed files with 22 additions and 8 deletions

View File

@@ -6,7 +6,7 @@
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.date}}</a></li>
<li><a href="{{ page.permalink | safe }}">{{ page.date }}</a> ~ {{ page.description }}</li>
{% endfor %}
</ul>
{% endblock content %}

View File

@@ -1,9 +1,9 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
<!-- <h1 class="title">
{{ page.title }}
</h1>
</h1> -->
<p class="subtitle"><strong>{{ page.date }}</strong></p>
{{ page.content | safe }}
{% endblock content %}