clubmanager/templates/base.rs.html

26 lines
583 B
HTML
Raw Permalink Normal View History

2023-09-21 17:44:53 +00:00
@(body: Content)
<!doctype html>
2023-11-05 11:49:07 +00:00
<html class="h-full" lang="">
2023-11-05 10:26:14 +00:00
2023-11-23 07:56:53 +00:00
<head>
<meta charset="utf-8" />
<title>clubmanager</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2023-11-05 10:26:14 +00:00
2023-11-23 07:56:53 +00:00
<link rel="stylesheet" href="/main.css" />
2023-11-05 10:26:14 +00:00
2023-11-23 07:56:53 +00:00
<script src="https://unpkg.com/htmx.org@@1.9.5"></script>
<script src="https://unpkg.com/htmx.org/dist/ext/sse.js"></script>
2023-11-05 10:26:14 +00:00
2023-11-23 07:56:53 +00:00
<!-- <link rel="manifest" href="site.webmanifest"> -->
<meta name="theme-color" content="#fafafa" />
</head>
2023-11-05 10:26:14 +00:00
2023-11-23 07:56:53 +00:00
<body class="h-full">
@:body()
</body>
2023-11-05 10:26:14 +00:00
2023-09-21 17:44:53 +00:00
</html>