diff options
Diffstat (limited to 'themes/bear/templates/page.html')
-rw-r--r-- | themes/bear/templates/page.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/themes/bear/templates/page.html b/themes/bear/templates/page.html new file mode 100644 index 0000000..93611b5 --- /dev/null +++ b/themes/bear/templates/page.html @@ -0,0 +1,29 @@ +{% 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 %} |