summaryrefslogtreecommitdiffstats
path: root/_post.html
blob: 3af9e8009246917e0c8a39135de972b4f9e0ecf9 (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">
  <p id="back-link">
    <a href="{{ site.url }}/{{ entry.path.split("/")[0] }}">Zurück zur Übersicht</a>
  </p>
  <div id="post-date"><h1><small>{{ entry.date.strftime('%d. %B %Y ') }}</small></h1></div>
  <h1>
    {{ entry.title|typogrify }}
  </h1>

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