11 lines
452 B
HTML
11 lines
452 B
HTML
{{ define "header" }}
|
|
<head>
|
|
<title>Reel of Fortune</title>
|
|
<!--Use the `title` variable to set the title of the page-->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta charset="UTF-8" />
|
|
<!--Load Tailwind & HTMX-->
|
|
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.7/dist/htmx.min.js"></script>
|
|
</head>
|
|
{{ end }}
|