{% if type == 'dashboard' %}
{% include 'partials/header-dashboard.html' %}
{% else %}
{% if title == 'Homepage' %}
{% include 'partials/header-signed.html' %}
{% else %}
{% include 'partials/header.html' %}
{% endif %}
{% endif %}
{% block content %}
{% endblock %}
{% include 'partials/footer.html' %}
{% include 'component/header-popups.html' %}
{% block JS %}{% endblock %}