19 lines
524 B
HTML
19 lines
524 B
HTML
{{define "base"}}
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="https://unpkg.com/htmx.org@1.9.2"></script>
|
|
<title>{{.Title}}</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
|
|
<meta name="csrf-token" content="fake-csrf-token">
|
|
</head>
|
|
<body class="bg-gray-100">
|
|
<main class="container mx-auto p-4">
|
|
{{template "content" .}}
|
|
</main>
|
|
</body>
|
|
</html>
|
|
{{end}}
|