page.html 256 B

123456789101112
  1. {% extends "base.html" %}
  2. {% block title %}{{ SITENAME }} | {{ page.title }}{% endblock %}
  3. {% block content %}
  4. <div class="page">
  5. <h1>{{ page.title }}</h1>
  6. {{ page.content }}
  7. </div>
  8. {% endblock %}