57 lines
1.4 KiB
Plaintext
57 lines
1.4 KiB
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<meta name="format-detection" content="telephone=no">
|
||
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||
|
<link rel="shortcut icon" type="image/x-icon" href="/assets/favicon.ico">
|
||
|
<link rel="apple-touch-icon" sizes="76x76" href="/assets/apple-touch-icon.png">
|
||
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
|
||
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
|
||
|
<link rel="manifest" href="/site.webmanifest">
|
||
|
<link rel="mask-icon" href="/assets/safari-pinned-tab.svg" color="#5bbad5">
|
||
|
<meta name="msapplication-TileColor" content="#ffc40d">
|
||
|
<meta name="theme-color" content="#000">
|
||
|
<meta name="keywords" content="">
|
||
|
<meta name="robots" content="noarchive, noimageindex">
|
||
|
|
||
|
<style>
|
||
|
body {
|
||
|
max-width: 800px;
|
||
|
margin: 2rem auto;
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
</style>
|
||
|
{% block title %}
|
||
|
|
||
|
{% if page['title'] %}
|
||
|
<title>{{ page['title'] }}</title>
|
||
|
{% else %}
|
||
|
<title>The title</title>
|
||
|
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
|
||
|
</head>
|
||
|
</head>
|
||
|
<body>
|
||
|
settings for newssletter only {{ name }}
|
||
|
<main>
|
||
|
<section>
|
||
|
<article>
|
||
|
{{ page['body'] | shortcode }}
|
||
|
</article>
|
||
|
</section>
|
||
|
|
||
|
|
||
|
</main>
|
||
|
|
||
|
|
||
|
|
||
|
</body>
|
||
|
|
||
|
|
||
|
</html>
|