publik-base-theme/templates/variants/alpes-maritimes-2018/wcs/base.html

32 lines
742 B
HTML

{% extends theme_base %}
{% load static %}
{% block extra-top-head %}
{{script|safe}}
<script src="{% static 'dataview.js' %}"></script>
{% endblock %}
{% block extra-body-class %}
{{ block.super }}
{% if form_slug %}
{% if category_slug %}formdef-category-{{category_slug}}{% endif %}
formdef-{{form_slug}}
{% endif %}
{% endblock %}
{% block placeholder-content %}
{% block content %}
<div id="{{bigdiv|default:'rub_service'}}" class="{% if gauche %}has-sidebox{% endif %}">
{% if title %}<h2>{{ title }}</h2>{% endif %}
{% if gauche %}
<div id="gauche">
{{ gauche|safe }}
</div>
{% endif %}
{% block body %}
{{ body|safe }}
{% endblock %}
</div>
{% endblock %}
{% endblock %}