16 lines
280 B
HTML
16 lines
280 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ page_title }}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
<span style="color:#980300;">{{ page_header }}</span>
|
|
<small>{{ page_header_small }}</small>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include content_template %}
|
|
{% endblock %}
|
|
|
|
|
|
|