Bauke/tildes-issue-log
Bauke
/
tildes-issue-log
Archived
1
Fork 0
This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
tildes-issue-log/source/pages/templates/redirect.html

23 lines
568 B
HTML

{% set pageTitle = 'Tildes Issue Log - Redirecting…' %}
{% set toRoot = '..' %}
{% extends "base.html" %}
{% set newURL = toRoot + '/' + year + '/' + month + '.html' %}
{% block head %}
<meta http-equiv="refresh" content="5; url={{ newURL }}" />
{% endblock %}
{% block body %}
<main id="main">
<p>
You've followed an old link to the
<a href="{{ newURL }}">{{ month|capitalize }} {{ year }} post</a>.
</p>
<p>
You can click on the link to go to the new post or wait 5 seconds to be redirected.
</p>
</main>
{% endblock %}