Files
aircox-radiocampus/cms/templates/aircox/cms/section.html
2016-06-13 04:25:17 +02:00

38 lines
564 B
HTML

{% if tag %}
<{{ tag }} {% if css_class %} class="{{ css_class }}" {% endif %}
{% for k, v in attrs.items %}
{{ k }} = "{{ v|addslashes }}"
{% endfor %} >
{% endif %}
{% block title %}
{% if title %}
<h1>{{ title }}</h1>
{% endif %}
{% endblock %}
{% block header %}
{% if header %}
<header>
{{ header|safe }}
</header>
{% endif %}
{% endblock %}
{% block content %}
{{ content|safe }}
{% endblock %}
{% block footer %}
{% if footer %}
<footer>
{{ footer|safe }}
</footer>
{% endif %}
{% endblock %}
{% if tag %}
</{{ tag }}>
{% endif %}