Fix HTML indentation

This commit is contained in:
2022-07-15 15:04:24 -06:00
parent 00d582d0c7
commit d1057534ec
4 changed files with 303 additions and 316 deletions

View File

@@ -3,7 +3,7 @@
{% block title %}{{ article.title|striptags }} | {{ SITENAME }}{% endblock %}
{% block head %}
{{ super() }}
{{ super() }}
{% if article.date %}
<meta name="date" content="{{article.date}}" />
@@ -25,34 +25,35 @@
{% endblock %}
{% block info %}
<p><a class="return-home" href="/">Return Home</a></p>
<p><a class="return-home" href="/">Return Home</a></p>
{% endblock %}
{% block content %}
{% if article.wide %}
<div class="content content-wide">
{% else %}
<div class="content">
{% endif %}
{% if article.wide %}
<div class="content content-wide">
{% else %}
<div class="content">
{% endif %}
<header>
<h1>{{ article.title }}</h1>
<div class="summary">
{{ article.summary }}
</div>
<p class="metadata">
{{ article.locale_date }}
{% if article.modified %}
— updated {{ article.locale_modified }}
{% endif %}
</p>
</header>
<hr />
<article>
<header>
<h1>{{ article.title }}</h1>
<div class="summary">
{{ article.summary }}
{{ article.content }}
</article>
</div>
<p class="metadata">
{{ article.locale_date }}
{% if article.modified %}
— updated {{ article.locale_modified }}
{% endif %}
</p>
</header>
<hr />
<article>
{{ article.content }}
</article>
</div>
<p><a class="return-home" href="/">Return Home</a></p>
<p><a class="return-home" href="/">Return Home</a></p>
{% endblock %}