20 lines
521 B
HTML
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 %}
|