forget-cancellare-vecchi-toot/templates/lib/layout.html

34 lines
1.4 KiB
HTML

<!doctype html>
<html lang=en prefix='og: http://ogp.me/ns#'>
<head>
<title>Forget</title>
<link rel='stylesheet' href='{{ st("style.css") }}' />
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='icon' href='{{ st("icon.png") }}' />
<meta name='og:title' content='Forget'/>
<meta name='og:description' content='Let your old bad posts be forgotten'/>
<meta name='og:image' content='{{ st("logotype.png", _external=True) }}'/>
<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'/>
</head>
<body>
<header>
<h1>
<a href="{{url_for('index')}}">
<img src="{{ st('logotype-200.png') }}" alt="Forget" width=200 srcset="{% for width in (200,400,600,800) -%}
{{ st('logotype-{}.png'.format(width)) }} {{width}}w,
{%- endfor %}"/>
</a>
</h1>
</header>
{% block body %}{% endblock %}
<footer>
<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>
</footer>
</body>
</html>