summaryrefslogtreecommitdiffstats
path: root/_taglist.html
blob: 0c973aaf58ad1f76ac6c04d0074043495c557cd6 (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>

<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 %}