You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
939 B
30 lines
939 B
package templates
|
|
|
|
templ Layout(title string) {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>{ title } - Derby Race Manager</title>
|
|
<link href="/static/css/tailwind.css" rel="stylesheet"/>
|
|
<script src="/static/js/htmx.min.js"></script>
|
|
</head>
|
|
<body class="bg-gray-100 min-h-screen">
|
|
<nav class="bg-indigo-600 text-white p-4">
|
|
<div class="container mx-auto flex justify-between items-center">
|
|
<a href="/" class="text-xl font-bold">Derby Race Manager</a>
|
|
<div class="space-x-4">
|
|
<a href="/" class="hover:underline">Home</a>
|
|
<a href="/admin" class="hover:underline">Admin</a>
|
|
<a href="/register" class="hover:underline">Register</a>
|
|
<a href="/heats" class="hover:underline">Heats</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<main>
|
|
{ children... }
|
|
</main>
|
|
</body>
|
|
</html>
|
|
} |