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.
31 lines
1.1 KiB
31 lines
1.1 KiB
{% extends 'base_catalog.html' %}
|
|
|
|
{% block content_list %}
|
|
|
|
<div class="page-title">
|
|
<h1>Запрашиваемая страница не найдена</h1>
|
|
</div>
|
|
<div class="m-article error-404">
|
|
<span class="figure">404:</span>
|
|
<p class="title">Возможно у нее изменился адрес или же она была удалена.<br> Воспользуйтесь поиском по названию, расширенной формой поиска или каталогом событий.</p>
|
|
<div class="clearfix"></div>
|
|
<hr/>
|
|
<section>
|
|
<h2>Каталог выставок</h2>
|
|
<ul class="items-list">
|
|
{% for item in expo_themes %}
|
|
<li><i class="fa fa-circle"></i><a href="/expo/theme/{{ item.url }}/">{{ item.name }} ({{ item.expo_count }})</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
<hr/>
|
|
<section >
|
|
<h2>Каталог конференций</h2>
|
|
<ul class="items-list">
|
|
{% for item in conf_themes %}
|
|
<li><i class="fa fa-circle"></i><a href="/conference/theme/{{ item.url }}/">{{ item.name }} ({{ item.conference_count }})</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
</div>
|
|
{% endblock %} |