2019-12-13 11:23:02 +01:00
|
|
|
{% extends "base.html" %}
|
2019-12-13 12:24:58 +01:00
|
|
|
|
2020-07-02 22:35:19 +02:00
|
|
|
{% set title = article.title + " | Offen" %}
|
2019-12-13 12:24:58 +01:00
|
|
|
{% set description = article.description %}
|
|
|
|
{% set href = article.save_as.replace('index.html', '') %}
|
2020-07-05 16:37:37 +02:00
|
|
|
{% set image_url = article.image_url %}
|
2019-12-13 12:24:58 +01:00
|
|
|
{% set no_stats = article.no_stats %}
|
|
|
|
{% set template = article.template %}
|
2020-08-06 11:02:17 +02:00
|
|
|
{% set bottom_cta = article.bottom_cta %}
|
2020-07-09 13:29:27 +02:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<main class="w-100 mt5-ns gray">
|
|
|
|
<div class="mw7 center pb5 bg-white">
|
|
|
|
<figure class="ma0">
|
|
|
|
<img alt="{{ title }}" src="{{ image_url }}"/>
|
|
|
|
{% if article.image_caption %}
|
|
|
|
<figcaption class="ph3 ph5-ns f7 normal moon-gray">
|
|
|
|
{{ article.image_caption }}
|
|
|
|
</figcaption>
|
|
|
|
{% endif %}
|
|
|
|
</figure>
|
|
|
|
<div class="ph3 ph5-ns pt5">
|
|
|
|
<h6 class="f5 lh-solid normal ma0 light-silver">
|
|
|
|
{{ article.date | strftime('%d %b %Y') }}{% if article.modified %}(updated {{ article.modified | strftime('%d %b %Y') }}){% endif %}, {{ article.author }}
|
|
|
|
</h6>
|
|
|
|
{{ article.content }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|