mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 11:22:19 +03:00
19 lines
584 B
Handlebars
19 lines
584 B
Handlebars
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
|
<title>
|
||
|
{{#if member}}Successfully Unsubscribed{{/if}}
|
||
|
{{#if error}}Unsubscribe Failed{{/if}}
|
||
|
</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p><a href="{{@site.url}}">Back to site</a></p>
|
||
|
<p>
|
||
|
{{#if member}}Success! {{member.email}} has been successfully unsubscribed.{{/if}}
|
||
|
{{#if error}}Uh oh! Unsubscribe failed: "{{error}}"{{/if}}
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|