Skip to content

Instantly share code, notes, and snippets.

@Imperat
Last active November 18, 2016 09:12
Show Gist options
  • Select an option

  • Save Imperat/0ea6bbf95ecb9cb38841da53fadb45fc to your computer and use it in GitHub Desktop.

Select an option

Save Imperat/0ea6bbf95ecb9cb38841da53fadb45fc to your computer and use it in GitHub Desktop.
{% for new in news_list|slice:"1:5" %}
<div class="index-news__col">
{% get_resolution forloop.counter0 as resolution %}
{% thumbnail new.image {% resolution %} crop="80% top" as im %}
<h5>{{ new.title }}</h5>
<span class="date orange">{{ new.date }}</span>
<span class="text">{{ new.description|striptags|truncatewords:12 }}</span>
<a href="{{new.get_absolute_url}}" class="more">{% trans "Подробнее" %}</a>
</div>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment