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.
18 lines
532 B
18 lines
532 B
{% extends "base.html" %}
|
|
{% load cms_tags i18n menu_tags %}
|
|
|
|
{% block title %}{% page_attribute "page_title" %}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="sub-content">
|
|
<div class="menu">
|
|
<h5>{% show_breadcrumb 0 "menu/sub_menu_title.html" 0 %}</h5>
|
|
<ul class="list-unstyled">
|
|
{% show_menu 1 0 100 100 'menu.html' %}
|
|
</ul>
|
|
</div>
|
|
<div class="content">
|
|
{% placeholder "content" %}
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|
|
|