blob: ce4aef0d8ca861c1a0d2a3bdc617b046c4b17d25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "layout.html" %}
{% set page_links = [
(pathto('@rss/' + sourcename), 'application/rss+xml', 'Page Comments'),
] %}
{% block body %}
{% if oldurl %}
<div class="docwarning">
<strong>Note:</strong> You requested an out-of-date URL from this server.
We've tried to redirect you to the new location of this page, but it may not
be the right one.
</div>
{% endif %}
{{ body }}
{% endblock %}
|