-
-
Save Imperat/0ea6bbf95ecb9cb38841da53fadb45fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% 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