15 lines
414 B
HTML
15 lines
414 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ page_title }}{% endblock %}
|
|
{% block page_header %}{{ page_header }} <small>{{ page_header_small }}</small>{% endblock %}
|
|
|
|
|
|
{% block content %}{% include content_template %}{% endblock %}
|
|
|
|
{% block panels %}
|
|
{% if panels %}<div class="panel-group">{% for panel in panels %}{% include panel %}{% endfor %}</div>
|
|
{% else %}{{ block.super }}{% endif %}
|
|
{% endblock %}
|
|
|
|
|