lots of graphics
[prawokultury.git] / migdal / templates / migdal / entry / entry_short.html
1 {% load i18n %}
2 {% load comments %}
3 {% load migdal_tags %}
4
5
6 <div class="entry entry-short entry-{{ object.type }}">
7 <div class="entry-wrapped">
8
9 {% entry_begin object %}
10
11 <div class="more">
12
13 {% if object.get_type.commentable %}
14 {% get_comment_count for object as comment_count %}
15 <a class="comments" href="{{ object.get_absolute_url }}#comment">
16 {% blocktrans count comment_count as c %}{{c}} comment{% plural %}{{c}} comments{% endblocktrans %}
17 </a>
18 {% endif %}
19
20 {% if object.body.raw %}
21     <a class="read-more" href="{{ object.get_absolute_url }}">{% trans "read more" %}</a>
22 {% endif %}
23
24 </div>
25
26
27 <div class="social">
28 </div>
29
30
31 <div style="clear: both"></div>
32 </div>
33 </div>