{% extends "base.html" %} {% block content %} {% set has_sidebar = site.config.extra.author_profile | default(value=false) %}
{% if has_sidebar %} {% endif %}
{% if home %}

{{ site.config.title }}

{{ home.content | safe }}
{% elif not has_sidebar %}

{{ 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 %}