{% extends "base.html" %} {% import "_icons.html" as icon %} {% block title %}{{ blog.title }} - {{ site.name }}{% endblock %} {% block description %}{{ blog.description }}{% endblock %} {% block content %}

{{ blog.title }}

{{ blog.description }}

{% if posts %}
{% for post in posts %}

{{ post.title }}

{{ post.summary }}

Read the post →
{% endfor %}
{% else %}

No posts yet.

{% endif %}
{% endblock %}