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