2024-02-10 11:59:58 +00:00
|
|
|
{{define "base"}}
|
|
|
|
<!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">
|
|
|
|
<title>Zdravko - {{template "title" .}}</title>
|
|
|
|
<link rel="stylesheet" href="/static/css/tailwind.css">
|
|
|
|
</head>
|
|
|
|
<body class="bg-gray-100">
|
|
|
|
{{template "main" .}}
|
2024-02-10 17:05:11 +00:00
|
|
|
<div class="container mx-auto">
|
|
|
|
<footer class="text-center text-gray-500 text-xs mt-8">
|
|
|
|
© 2024 Zdravko - <a href="https://github.com/mentos1386/zdravko">Source</a>
|
|
|
|
</footer>
|
2024-02-10 11:59:58 +00:00
|
|
|
<script src="/static/js/htmx.min.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|