Setup a Notes category

This commit is contained in:
jultty 2024-11-16 02:03:03 -03:00
commit f2e8988825
5 changed files with 53 additions and 0 deletions

13
templates/notes.html Normal file
View file

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">{{ section.title }}</h1>
<ul id="posts">
{%- for page in section.pages %}
<li>
<time class="post-date">{{ page.date }}</time>
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
</li>
{%- endfor %}
</ul>
{%- endblock content %}