2018-02-25 00:06:19 +01:00
|
|
|
{% macro render_blog_post(post, from_index=false) %}
|
2018-04-24 23:20:20 +02:00
|
|
|
{% 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">Written by {%
|
|
|
|
if post.twitter_handle %}<a href="https://chaos.social/@{{ post.twitter_handle }}">{{ post.author or post.twitter_handle }}</a>{%
|
|
|
|
else %}{{ post.author }}{%
|
|
|
|
endif %} on {{ post.pub_date }}</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">Written by {%
|
|
|
|
if post.twitter_handle %}<a href="https://chaos.social/@{{ post.twitter_handle }}">{{ post.author or post.twitter_handle }}</a>{%
|
|
|
|
else %}{{ post.author }}{%
|
|
|
|
endif %} on {{ post.pub_date }}</p>
|
2018-02-25 00:06:19 +01:00
|
|
|
</div>
|
2018-04-24 23:20:20 +02:00
|
|
|
</section>
|
|
|
|
{% endif %}
|
|
|
|
<!-- Content -->
|
|
|
|
<div class="wrapper">
|
|
|
|
<div class="inner">
|
|
|
|
<h2 class="major">{{ post.subtitle }}</h2>
|
|
|
|
{{ post.body }}
|
2018-04-26 08:48:17 +02:00
|
|
|
{% if from_index == False %}
|
|
|
|
{{ post.privatebody }}
|
|
|
|
{% else %}
|
2018-05-14 20:48:56 +02:00
|
|
|
<h2 class="major">Weiterlesen:</h2>
|
2018-04-26 08:48:17 +02:00
|
|
|
<a class="button special fit" href="{{ post|url }}">{{ post.title }}</a>
|
|
|
|
{% endif %}
|
2018-04-24 23:20:20 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- </section>-->
|
|
|
|
|
|
|
|
|
2018-02-25 00:06:19 +01:00
|
|
|
{% endmacro %}
|