{% extends "base.html" %} {% block content %} {% if title %}

{{ title }}


{% endif %} {% for post in posts %} {% with content = post.content.split('')[0]|safe %} {% with metadata = post.metadata %} {% include "post_content.html" %} {% if '' in post.content %}

Read more →

{% endif %} {% if loop.index != posts|count %}
{% endif %} {% endwith %} {% endwith %} {% endfor %} {% include "pagination.html" %} {% endblock %}