]> git.0d.be Git - panikweb.git/blob - panikweb/templates/combo/topik_menu_item.html
move static & templates to panikweb project directory
[panikweb.git] / panikweb / templates / combo / topik_menu_item.html
1 {% load combo paniktags thumbnail %}
2 <li class="item">
3   <div class="topik inline cf">
4     <a class="block cf topik-link" href="{{page.get_online_url}}">
5     <div class="logo">
6         {% if page.picture %}
7           {% thumbnail page.picture "60x60" crop="50% 25%" as im %}
8           <img alt="" width="60" height="60" src="{{im.url}}"/>
9           {% endthumbnail %}
10         {% else %}
11           <img alt="" src="/static/img/sound.png" width="60" height="60">
12         {% endif %}
13     </div>
14     <div class="content">
15       <div class="title">
16         <h5 class="title">{{page.title}}</h5>
17       </div>
18       <div class="smooth metas">
19         <span class="categories">{{category}}</span>
20       </div>
21     </div>
22     </a>
23   </div>
24 </li>