about summary refs log tree commit diff stats
path: root/templates/page.html
blob: baf6c091b8ae92336c267e2d7930195051db9d40 (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=config.extra.date_format) }}
          </time>
        </i>
      </p>
    {%- endif %}
  {%- endif %}
  <main>
    {{ page.content | safe }}
  </main>
  <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 %}