47 lines
1.8 KiB
HTML
47 lines
1.8 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Mixonomer/{% block title %}{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<link href="https://fonts.googleapis.com/css?family=Pirata+One|Roboto" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="https://storage.googleapis.com/{{ bucket }}/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="https://storage.googleapis.com/{{ bucket }}/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="https://storage.googleapis.com/{{ bucket }}/favicon-16x16.png">
|
|
<link rel="manifest" href="https://storage.googleapis.com/{{ bucket }}/site.webmanifest">
|
|
<link rel="mask-icon" href="https://storage.googleapis.com/{{ bucket }}/safari-pinned-tab.svg" color="#5bbad5">
|
|
<link rel="shortcut icon" href="https://storage.googleapis.com/{{ bucket }}/favicon.ico">
|
|
|
|
{% block scripts %}{% endblock %}
|
|
|
|
</head>
|
|
<body>
|
|
<div class="title">
|
|
<h1>Mixonomer</h1>
|
|
</div>
|
|
<br><br>
|
|
<ul class="navbar">
|
|
<li><a href="/">Home</a></li>
|
|
<li><a href="https://sarsoo.xyz/mixonomer/">About</a></li>
|
|
<li><a href="/privacy">Privacy</a></li>
|
|
<li><a href="https://sarsoo.xyz/about">Contact</a></li>
|
|
<li><a href="https://sarsoo.xyz">sarsoo.xyz</a></li>
|
|
</ul>
|
|
|
|
{% block content %}{% endblock %}
|
|
<div style="text-align: center">
|
|
<a href="https://sarsoo.xyz/about/" style="display: inline-block">
|
|
<img src="https://storage.googleapis.com/{{ bucket }}/andy.png"
|
|
alt="AP"
|
|
width="120px"
|
|
style="display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 8px">
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html>
|