webseite/templates/macros/blog.html

55 lines
2.4 KiB
HTML
Raw Normal View History

2018-02-25 00:06:19 +01:00
{% macro render_blog_post(post, from_index=false) %}
{% if from_index == True %}
<!-- Wrapper -->
<!-- <section id="wrapper"> -->
<header>
<div class="inner">
{% if from_index %}
<h2><a href="{{ post|url }}">{{ post.title }}</a></h2>
{% else %}
<h2>{{ post.title }}</h2>
{% endif %}
<p class="meta">{% if bag('translate', post.alt, 'created')
%}{{ bag('translate', post.alt, 'created') }}{% else %}Geschrieben von{% endif %} {%
if post.twitter_handle %}<a href="https://chaos.social/@{{ post.twitter_handle }}">{{ post.author or post.twitter_handle }}</a>{%
else %}{{ post.author }}{%
endif %} {% if post.alt == 'en' %}on {{ post.pub_date }}{% else %}am {{ post.pub_date.strftime('%d. %m. %Y') }}{% endif %}</p>
</div>
</header>
{% else %}
<section class="wrapper alt spotlight style2">
<div class="inner">
<div class="content">
<h2 class="major">{{ post.title }}</h2>
<p class="meta">{% if bag('translate', post.alt, 'created')
%}{{ bag('translate', post.alt, 'created') }}{% else %}Verfasst von{% endif %} {%
if post.twitter_handle %}<a href="https://chaos.social/@{{ post.twitter_handle }}">{{ post.author or post.twitter_handle }}</a>{%
else %}{{ post.author }}{%
endif %} {% if post.alt == 'en' %}on {{ post.pub_date }}{% else %}am {{ post.pub_date.strftime('%d. %m. %Y') }}{% endif %}</p>
2018-02-25 00:06:19 +01:00
</div>
</section>
{% endif %}
<!-- Content -->
<div class="wrapper">
<div class="inner">
<h2 class="major">{{ post.subtitle }}</h2>
{{ post.body }}
{% if from_index == False %}
{{ post.privatebody }}
2019-01-26 18:53:31 +01:00
{% if post.galerie %}{%
for blk in post.galerie.blocks %}
{{ blk }}
2019-01-26 18:53:31 +01:00
{% endfor %}{% endif %}
{% else %}
<h2 class="major">{%
if bag('translate', post.alt, 'read')
%}{{ bag('translate', post.alt, 'read') }}{% else %}Weiter lesen{% endif %}</h2>
<a class="button special fit" href="{{ post|url }}">{{ post.title }}</a>
{% endif %}
</div>
</div>
<!-- </section>-->
2018-02-25 00:06:19 +01:00
{% endmacro %}