A Python content management system designed for kirsle.net featuring a blog, comments and photo albums.
https://rophako.kirsle.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
357 B
14 lines
357 B
8 years ago
|
{% extends "layout.html" %}
|
||
|
{% block title %}Comment Subscriptions{% endblock %}
|
||
|
{% block content %}
|
||
|
|
||
|
<h1>You have been unsubscribed</h1>
|
||
|
|
||
|
The e-mail address <strong>{{ email }}</strong> has been unsubscribed
|
||
|
{% if thread == "*" %}
|
||
|
from all comment threads on this site.
|
||
|
{% else %}
|
||
|
from the comment thread "{{ thread }}".
|
||
|
{% endif %}
|
||
|
|
||
|
{% endblock %}
|