31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
{% block head %}
|
|
<title>{% block title %}{% endblock title %}</title>
|
|
{% endblock head %}
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" type="text/css" href="/static/css/index.css">
|
|
{% block scripts %}
|
|
{% endblock scripts %}
|
|
</head>
|
|
<body class="flex flex-col justify-between min-h-screen font-sans leading-normal tracking-normal">
|
|
<div class="h-16">{% block header %}{% endblock header %}</div>
|
|
<main class="container flex-1 w-full md:max-w-3xl mx-auto overflow-x-hidden">
|
|
{% block content %}{% endblock content %}
|
|
</main>
|
|
{% block footer %}
|
|
<div class="flex w-full h-20 justify-center items-center">
|
|
<hr>
|
|
<img src="/static/assets/signature.svg" alt="IMK (signature)" style="max-width:5%;height:auto;">
|
|
</div>
|
|
{% endblock footer %}
|
|
</body>
|
|
</script>
|
|
</html>
|