diff options
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..472d827 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,29 @@ +<!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="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> |