blob: 76ab7e6ced2dbe85e2d3c1626ba4deda4e54b746 (
plain) (
tree)
|  |  | {% extends "deep-base.html" %}
{% import "macro.html" as libm %}
{% block head %}
  {{ title }}
{% endblock %}
{% block body %}
  <div id="wrap">
    <section id="content">
    {% block content %}
      No content found
    {% endblock %}
    </section>
    <section id="nav">
      {% call libm::thrice("nav") %}
    </section>
  </div>
{% endblock %}
 |