Cleanup whitespace in templates
This commit is contained in:
parent
65d6c262a8
commit
ca731f5736
9 changed files with 129 additions and 131 deletions
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue