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

{% block content %}
<div id="blog-show">
  <h1>
    {{ entry.title|typogrify }}
    <small>{{ entry.date.strftime('%d %B %Y ') }}</small>
  </h1>
  <p>
    <a href="{{ site.url }}/{{ entry.path.split("/")[0] }}">Zurück zur Übersicht</a>
  </p>

  {{ entry.body }}

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