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

{{ site.config.title }}

{{ home.content | safe }}
{% else %}

{{ site.config.title }}

{% if site.config.description %}

{{ site.config.description }}

{% endif %}
{% endif %} {% if posts | length > 0 %}

Recent Posts

{% for post in posts %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt }}

{% endif %} {% if post.tags | length > 0 %}
{% for tag in post.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% if total_pages > 1 %} {% endif %}
{% endif %}
{% endblock %}