1{% extends "base.html" %}
2
3{% block content %}
4 {%- if not page.extra.no_header -%}
5 <h1>{{ page.title }}</h1>
6 {%- endif -%}
7 <header class="post-header">
8 {%- if page.authors -%}
9 <span>
10 by
11 {%- for author in page.authors -%}
12 <span class="author-name">
13 {{ author }}
14 {%- if not loop.last -%},{%- endif -%}
15 </span>
16 {%- endfor -%}
17 </span>
18 {%- endif -%}
19 {%- if page.date -%}
20 <span>published {{ page.date }}</span>
21 {%- endif -%}
22 </header>
23
24 {{ page.content | safe }}
25{% endblock content %}