21 lines
560 B
HTML
21 lines
560 B
HTML
{% extends "base.html" %}
|
|
{% block head %}
|
|
<title>Subscribe - {{ settings.SITENAME }}</title>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="subscribe">
|
|
{% if subscribed %}
|
|
Thank you for subscribing to our weekly email digest.
|
|
<script>
|
|
setTimeout(function() {
|
|
document.location.href = '/'
|
|
}, 3000)
|
|
</script>
|
|
{% else %}
|
|
You can subscribe to a weekly email digest with all clips, edits, sirens and phantoms published in the week.
|
|
{% include "subscribe_form.html" %}
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|