blob: 4a73e7680d89f3d6b4b8aad0b616c6b28a686c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HITO{% block title %}{% endblock %}</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Besley:wght@600&family=IBM+Plex+Mono:wght@400;500&family=IBM+Plex+Sans:wght@400;500;700&display=swap">
<link rel="stylesheet" href="/static/css/hito.css">
</head>
<body>
<main>
<header>
<a href="/" class="logo-link"><h1 class="logo">HITO</h1></a>
<p class="subtitle">High Intensity Tracker Online</p>
</header>
{% block content %}{% endblock %}
<footer>
{% block quote %}
<blockquote>
“The objective of all rational inquiry is to establish principles
which enable us to understand and predict reality.”
<cite>— Mike Mentzer</cite>
</blockquote>
{% endblock %}
</footer>
</main>
</body>
</html>
|