django_blog/blog/templates/blog/post_list.html

31 lines
848 B
HTML
Raw Normal View History

2017-12-08 00:56:38 +03:00
{% extends 'blog/base.html' %}
2017-12-08 02:18:43 +03:00
{% comment %} {% load pagination_tags %} {% endcomment %}
2017-12-08 00:56:38 +03:00
{% block content %}
{% if posts %}
{% for post in posts %}
<div class="post">
<div class="post-header">
<h2><a href="{% url 'post_detail' pk=post.pk %}">{{ post.title }}</a></h2>
<div class="date"><i class="fa fa-calendar"></i> {{ post.published_date}}</div>
2017-12-08 02:18:43 +03:00
{% if post.tags.names %}
2017-12-08 00:56:38 +03:00
<div class="tag">
<i class="fa fa-tags"></i>
{% for tag in post.tags.names %}
<a href="{% url 'post_list' tag=tag%}">{{ tag }}</a>
{% endfor %}
</div>
{% endif %}
</div>
2017-12-08 02:18:43 +03:00
{{ post.text|safe|linebreaksbr|truncatewords:80 }} <!--|linebreaksbr|truncatewords:80 }}</p--><br>
</div>
2017-12-08 00:56:38 +03:00
{% endfor %}
2017-12-08 02:18:43 +03:00
2017-12-08 00:56:38 +03:00
{% else %}
<div class="post">
<p>Ничего не найдено</p>
</div>
{% endif %}
{% endblock content %}