site/templates/blog.html

20 lines
521 B
HTML
Raw Normal View History

2024-11-14 17:35:47 +01:00
{% 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 %}