page.html 273 B

12345678910
  1. {% extends "base.html" %}
  2. {% block title %}{{ page.title }}{%endblock%}
  3. {% block content %}
  4. <h1>{{ page.title }}</h1>
  5. {% import 'translations.html' as translations with context %}
  6. {{ translations.translations_for(page) }}
  7. {{ page.content }}
  8. {% endblock %}