{% extends "base.html" %}
{% block styles %}
{{ super() }}
{% endblock %}
{% block hero %}
{% if page.is_homepage %}
{% include "partials/home-hero.html" %}
{% endif %}
{% endblock %}
{% block content %}
{% if page.is_homepage %}
{% include "partials/homepage-content.html" %}
{% else %}
{% include "partials/content.html" %}
{% endif %}
{% endblock %}