page.html 229 B

123456789
  1. {% extends "base.html" %}
  2. {% block title %}{{ page.title }}{% endblock %}
  3. {% block content %}
  4. <section id="content" class="body">
  5. <h1 class="entry-title">{{ page.title }}</h1>
  6. {{ page.content }}
  7. </section>
  8. {% endblock %}