summaryrefslogtreecommitdiff
path: root/plt/tag_list.html
blob: 8fbbdc533f11a591e9874c4125c43015e93f4645 (plain)
1
2
3
4
5
6
7
8
9
{%macro print(tags, div_class_name)%}
<div class="{{div_class_name}}">
  <p>Tags:
  {%for t in tags-%}
    <a href="{{t[1]}}">{{t[0]}}</a>{{", " if not loop.last else ""}}
  {%-endfor%}
  </p>
</div>
{%endmacro%}