diff options
Diffstat (limited to 'themes/bear/templates/page.html')
-rw-r--r-- | themes/bear/templates/page.html | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/themes/bear/templates/page.html b/themes/bear/templates/page.html deleted file mode 100644 index 93611b5..0000000 --- a/themes/bear/templates/page.html +++ /dev/null @@ -1,29 +0,0 @@ -{% extends "base.html" %} - -{% block title %}{{ page.title }} | {{ super() }}{% endblock %} - -{% block main %} - {%- if not page.extra.menu %} - <h1>{{ page.title }}</h1> - {%- if page.date %} - <p> - <time datetime='{{ page.date | date(format='%+') }}' pubdate> - {{- page.date | date(format=config.extra.date_format) -}} - </time> - </p> - {%- endif %} - {%- endif %} - <main id="content"> - {{ page.content | trim | safe }} - </main> - <ul class="tags"> - {%- if page.taxonomies %} - {%- for name, taxon in page.taxonomies %} - {{ name | capitalize }}: - {%- for item in taxon %} - <li><a href="{{ get_taxonomy_url(kind=name, name=item) }}">#{{ item }}</a></li> - {%- endfor %} - {%- endfor %} - {%- endif %} - </ul> -{% endblock %} |