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.
 
 
 
 
 
 

45 lines
1.6 KiB

{% load i18n %}
{% load template_filters %}
{% if False|random_social %}
<header>
<a href="/news/">{% trans 'Новости событий' %}</a>
</header>
<ul>
{% for item in news_list %}
<li>
<a href="{{ item.get_permanent_url }}">
<span class="nl-pict">
{% include 'client/includes/article/news_logo_in_catalog.html' with obj=item %}
</span>
<span class="nl-body">
<span class="nl-text">{{ item.main_title }}</span>
<span class="nl-date">{{ item.publish_date|date:"d E Y" }}</span>
</span>
</a>
</li>
{% endfor %}
</ul>
<footer><a class="more" href="/news/">{% trans 'Все новости' %}</a></footer>
{% else %}
<header>
<a href="/blogs/">{% trans 'Статьи' %}</a>
</header>
<ul>
{% for item in blogs %}
<li>
<a href="{{ item.get_permanent_url }}">
<span class="nl-pict">
{% include 'client/includes/article/news_on_main_logo.html' with obj=item %}
</span>
<span class="nl-body">
<span class="nl-text">{{ item.main_title }}</span>
<span class="nl-date">{{ item.created|date:"d E Y" }}</span>
</span>
</a>
</li>
{% endfor %}
</ul>
<footer><a class="more" href="/blogs/">{% trans 'Все статьи' %}</a></footer>
{% endif %}