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.
52 lines
1.6 KiB
52 lines
1.6 KiB
{% extends "base.html" %}
|
|
{% load cms_tags my_cms_tags %}
|
|
|
|
{% block page-title %}Пенсионный фонд России{% endblock %}
|
|
{% block site-title %}{% endblock %}
|
|
|
|
{% block breadcrumbs %}{% endblock %}
|
|
|
|
{% block content-main %}
|
|
{% get_cms_subpages current_page 1 as subpages %}
|
|
|
|
<div class="content-main">
|
|
<div class='main-text'>
|
|
{% placeholder "content-main" %}
|
|
</div>
|
|
|
|
<div class='clear'></div>
|
|
|
|
{% for sp in subpages %}
|
|
{% if sp.template == 'cms/pages/inner-level-2-with-index.html' %}
|
|
{% if sp.in_navigation and sp.is_public_published and sp.reverse_id != 'guestbook' %}
|
|
<div class='index_block'>
|
|
<a href="{% if request.is_secure %}https{% else %}http{% endif %}://{{ request.get_host }}{{ sp.get_absolute_url }}"><h3>{% page_attribute "page_title" sp %}</h3></a>
|
|
{% show_placeholder "on-index" sp %}
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
<div class='clear'></div>
|
|
<div class='hr'></div>
|
|
<div class='index-text-2'>
|
|
{% placeholder "content-main2" %}
|
|
</div>
|
|
|
|
|
|
{% placeholder "page-teasers" %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content-left %}
|
|
<div class="content-left">
|
|
{% placeholder "content-left" %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block colmask-wrapper-add-class %}leftmenu{% endblock %} {# ВАЖНЫЙ КЛАСС! #}
|
|
|
|
{% block colmid-div-start %}{% endblock %}
|
|
|
|
{% block colmid-div-end %}{% endblock %}
|
|
|
|
{% block col3-right %}{% endblock %}
|
|
|