Mercurial > libervia-web
comparison themes/default/static_blog.html @ 743:916075bd0356
server_side: display tags in static blogs
author | souliane <souliane@mailoo.org> |
---|---|
date | Sat, 21 Nov 2015 17:03:46 +0100 |
parents | bf562fb9c273 |
children | 6f2200d720d5 |
comparison
equal
deleted
inserted
replaced
742:d123e27fc386 | 743:916075bd0356 |
---|---|
37 </div> | 37 </div> |
38 </div> | 38 </div> |
39 </a> | 39 </a> |
40 {% endif %} | 40 {% endif %} |
41 <span class="mblog_content"> | 41 <span class="mblog_content"> |
42 {% if entry.message_title %} | 42 {% if entry.title %} |
43 <h1><a href="{{entry.url}}" class="item_link">{{entry.title}}</a></h1> | 43 <h2><a href="{{entry.url}}" class="item_link">{{entry.title}}</a></h2> |
44 {% endif %} | |
45 {% if entry.tags %} | |
46 <ul class="mblog_tags"> | |
47 {% for tag in entry.tags %} | |
48 <li><a>{{tag}}</a></li> | |
49 {% endfor %} | |
50 </ul> | |
44 {% endif %} | 51 {% endif %} |
45 {{entry.content}} | 52 {{entry.content}} |
46 </span> | 53 </span> |
47 {% if entry.type == "main_item" %} | 54 {% if entry.type == "main_item" %} |
48 <a href="{{entry.url}}" class="item_link"> | 55 <a href="{{entry.url}}" class="item_link"> |