{% extends "base.html" %} {% block heading %} {% endblock %} {% block content %}
{{ post.content|safe }}
{% if 'home-posts' in config and config['home-posts'].keys()|length > 0 %} {% set home_posts = config['home-posts'] %} {% set ks = home_posts.keys() | list %} {% set row_number = (ks|length / 2)|round(0, 'ceil')|int %} {% for rn in range(row_number) %}

{{ ks[rn] }}

{% endfor %} {% endif %}
{% endblock %} {% block pagination %} {{ pagination }} {% endblock %}