madblog/madblog/templates/article.html

52 lines
1.3 KiB
HTML
Raw Normal View History

{% with title=title or config.title or 'Blog', skip_header=skip_header or not config.header, styles=['/css/blog.css', '/css/code.css'] %}
2022-01-11 20:16:27 +01:00
{% include 'common-head.html' %}
{% endwith %}
<main>
<div class="container">
{% if not skip_header %}
<div class="title">
<h1>{{ title }}</h1>
</div>
{% if description %}
<div class="description">
<h3>{{ description }}</h3>
</div>
{% endif %}
{% if published %}
<div class="published-date">
Published
{% if author %} by
{% if author_email %}
<a href="mailto:{{ author_email }}">
{% endif %}
{{ author }}
{% if author_email %}
</a>
{% endif %}
{% endif %}
on {{ published }}
</div>
{% endif %}
{% endif %}
{% if image %}
<div class="main-image-container">
<img class="main-image" src="{{ image }}" alt=".">
</div>
{% endif %}
2022-01-11 20:16:27 +01:00
<div class="content">
{{ content | safe }}
</div>
</div>
2022-01-14 01:24:28 +01:00
{% include 'footer.html' %}
2022-01-11 20:16:27 +01:00
</main>
{% include 'common-tail.html' %}