2017-08-03 16:05:28 +02:00
|
|
|
<!doctype html>
|
2017-08-07 19:42:20 +02:00
|
|
|
<html lang=en prefix='og: http://ogp.me/ns#'>
|
2017-08-03 16:05:28 +02:00
|
|
|
<head>
|
|
|
|
<title>Forget</title>
|
2017-08-11 16:41:31 +02:00
|
|
|
<link rel='stylesheet' href='{{ st("styles.css") }}' />
|
2017-08-04 01:52:18 +02:00
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
2017-08-07 21:35:46 +02:00
|
|
|
<link rel='icon' href='{{ st("icon.png") }}' />
|
2017-08-07 19:42:20 +02:00
|
|
|
<meta name='og:title' content='Forget'/>
|
|
|
|
<meta name='og:description' content='Let your old bad posts be forgotten'/>
|
2017-08-07 21:35:46 +02:00
|
|
|
<meta name='og:image' content='{{ st("logotype.png", _external=True) }}'/>
|
2017-08-07 19:42:20 +02:00
|
|
|
<meta name='og:image:alt' content='Forget'/>
|
|
|
|
<meta name='og:type' content='website' />
|
|
|
|
<meta name='twitter:card' content='summary' />
|
|
|
|
<meta name='twitter:site:id' content='808418'/>
|
2017-08-31 19:58:48 +02:00
|
|
|
|
2017-08-31 20:46:38 +02:00
|
|
|
{% if sentry -%}
|
|
|
|
<script defer src="https://cdn.ravenjs.com/3.17.0/raven.min.js" crossorigin="anonymous"></script>
|
|
|
|
<script defer src="{{ url_for('sentry_setup') }}"></script>
|
2017-08-31 19:58:48 +02:00
|
|
|
{% endif -%}
|
2017-08-12 01:04:22 +02:00
|
|
|
{% block scripts %}{% endblock %}
|
2017-08-03 16:05:28 +02:00
|
|
|
</head>
|
2017-08-24 15:39:11 +02:00
|
|
|
{%- from 'lib/picture.html' import picture %}
|
2017-08-03 16:05:28 +02:00
|
|
|
<body>
|
|
|
|
<header>
|
2017-08-07 21:35:46 +02:00
|
|
|
<h1>
|
2017-09-17 12:29:49 +02:00
|
|
|
<a href="
|
|
|
|
{%- if g.viewer -%}
|
|
|
|
{{url_for('index')}}
|
|
|
|
{%- else -%}
|
|
|
|
{{url_for('about')}}
|
|
|
|
{%- endif -%}
|
|
|
|
">
|
2017-08-24 15:39:11 +02:00
|
|
|
{{ picture(st, 'logotype', (200,400,600,800), ('webp','jpeg'), '200px', alt='forget') }}
|
2017-08-07 21:35:46 +02:00
|
|
|
</a>
|
|
|
|
</h1>
|
2017-08-03 16:05:28 +02:00
|
|
|
</header>
|
|
|
|
{% block body %}{% endblock %}
|
2017-08-09 11:43:16 +02:00
|
|
|
<footer>
|
2017-09-20 23:28:12 +02:00
|
|
|
<p>
|
|
|
|
Forget <a href='{{repo_url}}'>{{version or "dev"}}</a>
|
|
|
|
· <a href="{{url_for('about')}}">About</a>
|
|
|
|
· <a href="{{url_for('privacy')}}">Privacy</a>
|
|
|
|
</p>
|
2017-09-01 00:09:05 +02:00
|
|
|
<p>Report issues <a href='https://github.com/codl/forget/issues'>on Github</a>
|
|
|
|
or directly to codl on
|
|
|
|
<a href="https://twitter.com/codl">Twitter</a>,
|
|
|
|
<a href="https://chitter.xyz/@codl">Mastodon</a>,
|
|
|
|
or by <a href="mailto:codl@codl.fr">Email</a>.
|
|
|
|
</p>
|
2017-08-09 11:43:16 +02:00
|
|
|
</footer>
|
2017-08-03 16:05:28 +02:00
|
|
|
</body>
|
|
|
|
</html>
|