33 lines
887 B
HTML
33 lines
887 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>{{ title }}</title>
|
||
|
<link href="../css/style.css" rel="stylesheet">
|
||
|
<link rel="shortcut icon" href="../images/love-mark-square.png" type="image/x-icon">
|
||
|
</head>
|
||
|
|
||
|
<body id="get-love-page">
|
||
|
<div id="wrapper">
|
||
|
<h1>{{ title }}</h1>
|
||
|
{{ markdown | safe }}
|
||
|
<div class="spacer"></div>
|
||
|
<footer>
|
||
|
<div>
|
||
|
<a class="hide-external" href="https://holllo.cc">
|
||
|
<img src="../images/holllo-mark.png" alt="Made by Holllo">
|
||
|
</a>
|
||
|
</div>
|
||
|
<div>
|
||
|
<a id="liberapay-button" class="hide-external" href="https://liberapay.com/Holllo/donate">
|
||
|
<img src="../images/liberapay-button.svg" alt="Support Holllo via LiberaPay">
|
||
|
</a>
|
||
|
</div>
|
||
|
</footer>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|