{% extends "hshassets/layout/base.html" %} {% load staticfiles %} {% load i18n %} {% block body %}
{% block hero-head %}
{# this navbar type will be deprecated soon, but heros only support this old type #}
{% endblock %} {% block hero-body %}

{% block hero-title %}{% endblock %}

{% block hero-subtitle %}{% endblock %}

{% endblock %} {% block hero-foot %}{% endblock %}
{% block pre-section %}{% endblock %} {% block section %}
{% block notifications %} {# django message framework enabled? #} {% if messages %} {% for message in messages %}
{% if message.tags == 'debug' %} {% elif message.tags == 'info'%} {% elif message.tags == 'success'%} {% elif message.tags == 'warning'%} {% elif message.tags == 'error'%}{% endif %} {{ message }}
{% endfor %} {% endif %} {% endblock %} {% block container %}{% endblock %}
{% endblock %} {% block post-section %}{% endblock %} {% endblock %}