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

Blog

{% if q %}
Search: “{{ q }}”
{% endif %}
{% for post in posts %}
{% if post.thumbnail %} {{ post.title }} {% endif %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt }}

{% endif %}
{% empty %}

No posts yet.

{% endfor %}
{% endblock %}