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.
 
 
 
 
 
 

21 lines
727 B

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