29 lines
721 B
HTML
29 lines
721 B
HTML
{% extends "cms/page.html" %}
|
|
|
|
{% load cms_tags %}
|
|
{% load menu_tags %}
|
|
|
|
{% block navbar %}
|
|
{% include "header_reduced.html" %}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<nav class="bg-body-secondary" aria-label="breadcrumb">
|
|
<div class="container">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<a href="{{ request.current_page.get_absolute_url }}">
|
|
{{ request.current_page.get_title }}
|
|
</a>
|
|
</li>
|
|
{% block govplan_breadcrumbs %}{% endblock %}
|
|
</ol>
|
|
</div>
|
|
</nav>
|
|
|
|
{% static_placeholder "govplan_header" %}
|
|
{% block app_body %}
|
|
{% placeholder "content" %}
|
|
{% endblock %}
|
|
{% static_placeholder "govplan_footer" %}
|
|
{% endblock %}
|