Fixed article.html indentation

This commit is contained in:
Fabio Manganiello 2021-01-31 01:07:26 +01:00
parent a9e3302792
commit b846b928c6

View file

@ -5,34 +5,33 @@
<main> <main>
<div class="container"> <div class="container">
{% if not skip_header %} {% if not skip_header %}
<div class="title"> <div class="title">
<h1>{{ title }}</h1> <h1>{{ title }}</h1>
</div> </div>
{% if description %} {% if description %}
<div class="description"> <div class="description">
<h3>{{ description }}</h3> <h3>{{ description }}</h3>
</div> </div>
{% endif %} {% endif %}
{% if published %} {% if published %}
<div class="published-date"> <div class="published-date">
Published Published
{% if author %} {% if author %} by
by {% if author_email %}
{% if author_email %} <a href="mailto:{{ author_email }}">
<a href="mailto:{{ author_email }}"> {% endif %}
{% endif %}
{{ author }}
{{ author }}
{% if author_email %}
{% if author_email %} </a>
</a> {% endif %}
{% endif %} {% endif %}
on {{ published }}
</div>
{% endif %} {% endif %}
on {{ published }}
</div>
{% endif %}
{% endif %} {% endif %}
<div class="content"> <div class="content">