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

{% block content %}
<h1>{{ entry.title|typogrify }}</h1>

{{ entry.body }}

<ul class="meta">
  <li>Published: {{ entry.date.strftime('%d %B %Y ') }}</li>

  {% if entry.tags %}
  <li>
    Tags: {% for tag in entry.tags -%}
    <a href="{{ site.tag_cache.get(tag).get_url() }}">{{ tag }}</a>
    {%- if not loop.last %}, {% endif -%}
    {%- endfor %}
  </li>
  {% endif %}
</ul>
{% endblock %}