mirror of
https://github.com/chatmail/relay.git
synced 2026-05-10 16:04:37 +00:00
28 lines
818 B
HTML
28 lines
818 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
{% if config.webdev %}
|
|
<meta http-equiv="refresh" content="3">
|
|
{% endif %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
|
<title>{{ config.mail_domain }} {{ pagename }}</title>
|
|
<link rel="stylesheet" href="./main.css">
|
|
<link rel="icon" href="/logo.svg">
|
|
<link rel=”mask-icon” href=”/logo.svg” color=”#000000">
|
|
</head>
|
|
<body>
|
|
|
|
<ul id="menu">
|
|
<li><a href="index.html">home</a></li>
|
|
<li><a href="info.html">info</a></li>
|
|
<li><a href="privacy.html">privacy</a></li>
|
|
<li><a href="https://github.com/deltachat/chatmail">public code ↗</a></li>
|
|
<li id="domain"><a href="index.html">{{ config.mail_domain }}</a></li>
|
|
</ul>
|
|
|
|
{{ markdown_html }}
|
|
|
|
</body>
|
|
</html>
|