21 lines
341 B
HTML
21 lines
341 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ title }}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{ title }}</h1>
|
|
|
|
{% if subtitle %}
|
|
<h3>{{ subtitle }}</h3>
|
|
{% endif %}
|
|
|
|
<p>{{ description }} </p>
|
|
|
|
https://{{ country_code }}.{{ domain_uri }}{% url 'web:notification:unsubscribe' code %}
|
|
|
|
</body>
|
|
</html>
|
|
|