madblog/madblog/templates/article.html

60 lines
1.5 KiB
HTML
Raw Permalink Normal View History

{% if not skip_html_head %}
{% with title=title, skip_header=skip_header or not config.header, styles=['/css/blog.css', '/css/code.css'] %}
{% include 'common-head.html' %}
{% endwith %}
2022-01-11 20:16:27 +01:00
<main>
<div class="container">
{% if not skip_header %}
{% if title %}
<div class="title">
<h1>{{ title }}</h1>
</div>
{% endif %}
2022-01-11 20:16:27 +01:00
{% 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">
{% endif %}
2022-01-11 20:16:27 +01:00
{{ content | safe }}
{% if not skip_html_head %}
2022-01-11 20:16:27 +01:00
</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' %}
{% endif %}