]> git.0d.be Git - panikweb.git/blob - panikweb_templates/templates/includes/topik.html
use pages to get to topiks
[panikweb.git] / panikweb_templates / templates / includes / topik.html
1 {% load thumbnail paniktags staticfiles %}
2 <a href="{{ page.get_online_url }}" class="topik-link">
3 <div>
4   <div class="logo">
5     {% thumbnail page.picture "60x60" crop="50% 25%" as im %}
6     <img src="{{im.url}}"/>
7     {% endthumbnail %}
8   </div>
9   <div class="content">
10     <div class="title">
11      <h5 class="title">{{ page.title }}</h5>
12     </div>
13     <div class="description ellipsis">
14     </div>
15   </div>
16 </div>
17 </a>