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-07 21:35:46 +02:00
|
|
|
<link rel='stylesheet' href='{{ st("style.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-03 16:05:28 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2017-08-07 21:35:46 +02:00
|
|
|
<h1>
|
|
|
|
<a href="{{url_for('index')}}">
|
2017-08-11 16:04:18 +02:00
|
|
|
<img src="{{ st('logotype-200.png') }}" alt="Forget" width='200px' height='144px' sizes='200px' srcset="
|
2017-08-11 15:08:07 +02:00
|
|
|
{%- for width in (200,400,600,800) -%}
|
|
|
|
{{ st('logotype-{}.png'.format(width)) }} {{width}}w,
|
|
|
|
{%- endfor -%}
|
|
|
|
"/>
|
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-08-09 14:39:51 +02:00
|
|
|
<p>Forget {{version or "dev"}}</p>
|
|
|
|
<p>A <a href="https://twitter.com/codl">codl</a> joint</p>
|
|
|
|
<p><a href="https://github.com/codl/forget">Code on Github</a></p>
|
2017-08-09 11:43:16 +02:00
|
|
|
</footer>
|
2017-08-03 16:05:28 +02:00
|
|
|
</body>
|
|
|
|
</html>
|