aboutsummaryrefslogblamecommitdiffhomepage
path: root/templates/page.html
blob: e7504f45ea573e07ee4834c8b332c86ca99c4660 (plain) (tree)
1
2
3
4
5
6




                                                              
                                                                                                                                









                                
{% extends "index.html" %}

{% block content %}
  <article itemscope itemtype="http://schema.org/BlogPosting">
    <header>
      <h1 itemprop="headline"><span class="extra-notes">{{ page.date | date(format="%Y/%m/%d") }} -</span> {{ page.title }}</h1>
    </header>
    <div itemprop="articleBody">
      {{ page.content | safe }}
    </div>
  </article>
{% endblock content %}

<!--
vim:sw=2
-->