This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
portail-citoyen2/portail_citoyen/templates/base-cms.html

23 lines
546 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% load menu_tags cms_tags sekizai_tags %}
{% block breadcrumbs %}
<li class="last">{% page_attribute "page_title" %}</li>
{% endblock %}
{% block content %}
<div id="real-content">
{% placeholder "content" %}
</div>
{% endblock %}
{% block sidebar %}
{% placeholder "sidebar-top" inherit %}
{% placeholder "sidebar" %}
{% endblock %}
{% block footer %}
{% placeholder "footer" inherit or %}{% show_uncached_placeholder "footer" "extra-placeholders" %}{% endplaceholder %}
{% endblock %}