{% extends "base.html" %} {% block title %}{{ page.title }} - Hazelnut{% endblock title %} {% block content %}

{{ page.title }}

{{ page.date | date() }}

{% if page.extra.toc %}

Table of Contents

    {% for h1 in page.toc %}
  1. {{ h1.title }} {% if h1.children %}
      {% for h2 in h1.children %}
    1. {{ h2.title }}
    2. {% endfor %}
    {% endif %}
  2. {% endfor %}
{% endif %} {{ page.content | safe }} {% endblock content %}