{% set name = article.title %} {% set link = article.url %} {% extends "base.html" %} {% block content %} {% from 'macro.html' import article_info with context %} {% from 'macro.html' import genurl with context %} {{ article_info(article) }}
{{ article.content }}

{% if article.related_posts %} {% from 'macro.html' import article_panel_list with context %} {% set articles = article.related_posts %} {% set parent = '' %} {% set id = "collapseRelated" %} {% set title_left = "Verwandte Posts" %} {% set title_right = articles|count %} {% set entry_list = articles %} {{ article_panel_list(parent,id,title_left,title_right,entry_list) }} {% endif %} {% for temp in dates %} {% if temp.url == article.url %} {% if not loop.first %} {% set prev = dates[loop.index0-1] %} {% endif %} {% if not loop.last %} {% set next = dates[loop.index0+1] %} {% endif %} {% endif %} {% endfor %} {% endblock %}