theme/templates/page.html (8 lines of code) (raw):
{% extends "base.html" %}
{% block head %}
{{ super() }}
<title>{% block title %}{{ page.title }}{% endblock title %}</title>
{% endblock head %}
{% block content %}
{{ page.content }}
{% endblock %}