{% if layout == 'layout' %}
{% include 'partials/header-1.html' %}
{% else %}
{% include 'partials/header.html' %}
{% endif %}
{% block content %}
{% endblock %}
{% if layout == 'layout' %}
{% include 'partials/footer-1.html' %}
{% else %}
{% include 'partials/footer.html' %}
{% endif %}
{% block JS %}{% endblock %}