diff --git a/templates/article.html b/templates/article.html index 84da8d3..832af87 100644 --- a/templates/article.html +++ b/templates/article.html @@ -1,83 +1,85 @@ {% extends "base.html" %} {% block content %} -

{{ page.title }}

+
+

{{ page.title }}

-{%- if page.date %} - - - {%- if page.authors %} - - Author: {{ page.authors[0] }} - {%- endif %} - {%- if page.taxonomies %} - {%- for name, taxon in page.taxonomies %} + {%- if page.date %} + + + {%- if page.authors %} -
    - {%-for item in taxon %} -
  • - {{ item }} -
  • - {%- endfor %} -
- {%- endfor %} - {%- endif %} -
-{%- endif %} - -{% if page.extra.archive %} -
- - - Archived - - {{ page.extra.archive | markdown | safe }} -
-{% endif %} - -{% if page.extra.trigger %} -
- - - Trigger Warning - - {{ page.extra.trigger | markdown | safe }} -
-{% endif %} - -{% if page.extra.disclaimer %} -
- - - Disclaimer - - {{ page.extra.disclaimer | markdown | safe }} -
-{% endif %} - -{% if page.extra.toc %} -

Table of Contents

-
{% if page.extra.comments.id %} {% include "partials/comments.html" %}