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

{% block title %}: Tag {{ entry.slug }}{% endblock %}

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

<ul>
  {% for post in site.tags[entry.slug] %}
  <li>
    {{ post.date.strftime('%x') }}
    <a href="{{ post.get_url() }}">{{ post.title }}</a>
    {{ post.tagline }}
  </li>
  {% endfor %}
</ul>
{% endblock %}