summaryrefslogtreecommitdiffstats
path: root/_taglist.html
blob: 0705547391f16dabefaceb86bd588eec7520bbd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "_base.html" %}

{% block title %}{{ entry.slug }} tag{% endblock %}

{% block content %}
<h2>Posts with tag {{ entry.slug }}</h2>

<table class="posts">
  {% for post in site.tags[entry.slug] %}
  <tr>
    <td class="date">{{ post.date.strftime('%Y, %B %d') }}</td>
    <td class="title"><a href="{{ post.get_url() }}">{{ post.title }}</a></td>
    <td class="tagline">{{ post.tagline }}</td>
  </tr>
  {% endfor %}
</table>
{% endblock %}