publik-base-theme/templates/variants/grand-chambery/wcs/base.html

29 lines
563 B
HTML

{% extends "wcs/base.html" %}
{% load static %}
{% block topsection %}
{% if title %}
<div id="content-top-wrapper">
<div class="content-top">
<h1>{{ title }}</h1>
</div>
</div>
{% endif %}
{% endblock %}
{% block content %}
{% block side %}
{% if form_side %}
<div class="form-content--sidebox" id="gauche">
{{ form_side|safe }}
</div>
{% endif %}
{% endblock %}
<div id="{{bigdiv|default:'rub_service'}}">
{% block body %}
{{ body|safe }}
{% endblock %}
</div>
{% endblock %}