about summary refs log tree commit diff stats
path: root/templates/page.html
blob: bf9eca721d700427ab0e26f55ef1e6d5b39a7318 (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
26
27
28
29
30
31
32
33
{% extends "base.html" %}

{% block title %}
{{ page.title }} | {{ super() }}
{% endblock %}

{% block main %}
{%- if not page.extra.menu %}
<h1>{{ page.title }}</h1>
{%- if page.date %}
<p>
  <i>
    <time datetime='{{ page.date | date(format='%+') }}' pubdate>
      {{ page.date | date(format="%d %b, %Y") }}
    </time>
  </i>
</p>
{%- endif %}
{%- endif %}
<content>
  {{ page.content | safe }}
</content>
<p>
  {%- if page.taxonomies %}
  {%- for name, taxon in page.taxonomies %}
  {{ name | capitalize }}:
  {%- for item in taxon %}
  <a href="{{ get_taxonomy_url(kind=name, name=item) }}">#{{ item }}</a>
  {%- endfor %}
  {%- endfor %}
  {%- endif %}
</p>
{% endblock %}