You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
630 B
17 lines
630 B
{% extends "base.html" %}
|
|
{% load cms_tags menu_tags %}
|
|
|
|
{% block title %}{% page_attribute "page_title" %}{% endblock title %}
|
|
|
|
{% block content %}
|
|
{% block breadcrumb %}
|
|
<ol class="list-unstyled list-inline breadcrumb" vocab="http://schema.org/" typeof="BreadcrumbList">
|
|
{% show_breadcrumb 0 "menu/breadcrumb.html" 0 %}
|
|
</ol>
|
|
{% endblock breadcrumb %}
|
|
|
|
{% placeholder "content" %}
|
|
{% if request.current_page != request.current_page.get_root %}
|
|
{% static_placeholder 'footer-page-content-'|add:request.current_page.get_root.reverse_id %}
|
|
{% endif %}
|
|
{% endblock content %}
|
|
|