{% extends "base.html" %} {% block title %}{{ page.title }} — BrewSync{% endblock %} {% block content %}

{{ page.title }}

{% if page.intro %}
{{ page.intro|safe }}
{% endif %} {% if posts %}
{% for post in posts %}

{{ post.title }}

{% if post.specific.date %}
{{ post.specific.date|date:"F j, Y" }}
{% endif %} {% if post.specific.intro %}
{{ post.specific.intro }}
{% endif %}
{% endfor %}
{% else %}

No blog posts yet.

{% endif %} {% endblock %}