{% extends "base.html" %}
{% set is_home = not page.url %}
{% block tabs %}
{{ super() }}
{% if is_home %}
{% include 'home.html' %}
{% endif %}
{% endblock %}
{% block container %}
{% if is_home %}
{% else %}
{{ super() }}
{% endif %}
{% endblock %}
{% block extrahead %}
{{ super() }}
{% if is_home %}
{% endif %}
{% endblock %}