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.
37 lines
1.3 KiB
37 lines
1.3 KiB
{% extends "base.html" %}
|
|
{% load cms_tags i18n menu_tags %}
|
|
|
|
{% block title %}{% page_attribute "page_title" %}{% endblock title %}
|
|
|
|
{% block content %}
|
|
{% block breadcrumb %}
|
|
<ul class="list-unstyled list-inline breadcrumb">
|
|
{% show_breadcrumb 0 "menu/breadcrumb.html" 0 %}
|
|
</ul>
|
|
{% endblock breadcrumb %}
|
|
|
|
<div class="sub-content">
|
|
<div class="menu">
|
|
<h5 class="header"><strong>{% if request.current_page.parent %}{% page_attribute "menu_title" request.current_page.parent_id %}{% else %}{% page_attribute "menu_title" %}{% endif %}</strong></h5>
|
|
<ul class="list-unstyled">
|
|
|
|
{% if request.current_page.parent %}
|
|
{% show_menu_below_id request.current_page.parent.reverse_id 0 100 100 100 'menu.html' %}
|
|
{% else %}
|
|
{% show_menu 1 100 0 100 'menu.html' %}
|
|
{% endif %}
|
|
</ul>
|
|
<div class="sub_parent_placeholder_{{ request.current_page.parent.reverse_id }}">
|
|
{% static_placeholder request.current_page.parent.reverse_id %}
|
|
</div>
|
|
</div>
|
|
<div class="content">
|
|
{% block content_safe %}
|
|
{% placeholder "content" %}
|
|
{% endblock content_safe %}
|
|
</div>
|
|
</div>
|
|
|
|
{% static_placeholder 'footer-sub-content' %}
|
|
|
|
{% endblock content %}
|
|
|