Cleanup whitespace in templates

This commit is contained in:
jultty 2024-08-20 03:59:48 -03:00
commit ca731f5736
9 changed files with 129 additions and 131 deletions

View file

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