site/templates/blog.html
2024-11-21 03:48:30 +02:00

20 lines
521 B
HTML

{% extends "base.html" %}
{% block content %}
{% if section.pages | length > 1 %}
<h1>{{ section.title }}</h1>
{% for page in section.pages %}
<a style="text-decoration: none; font-size: 1.2rem;" href="{{ page.permalink | safe }}">{{ page.title }}</a>
<br />
<span style="color: gray;">{{ page.date }}</span>
<br />
<br />
{% endfor %}
{% else %}
<p style="text-align: center; color: gray;">
There are no blogposts currently
</p>
{% endif %}
{% endblock %}