{% extends "./base.html" %}
{% comment %}
Override is a trick here: it allows to change title at two different different
places inside the page: inside `
` tag, and inside the page
content.
{% endcomment %}
{% block head-title %}
{% block title %}
{% if page and page.title %}{{ page.title }} —{% endif %}
{% endblock %}
{{ station.name }}
{% endblock %}
{% block header %}{% if page %}{{ block.super }}{% endif %}{% endblock %}