shop.tonybtw.com

shop.tonybtw.com

https://git.tonybtw.com/shop.tonybtw.com.git git://git.tonybtw.com/shop.tonybtw.com.git
727 bytes raw
1
package views
2
3
templ Layout(title string) {
4
	<!DOCTYPE html>
5
	<html lang="en">
6
		<head>
7
			<meta charset="UTF-8"/>
8
			<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
9
			<title>{ title }</title>
10
			<link rel="stylesheet" href="/static/style.css"/>
11
			<script src="https://unpkg.com/htmx.org@2.0.0"></script>
12
			<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
13
		</head>
14
		<body>
15
			<header>
16
				<nav>
17
					<a href="/" class="logo">shop.tonybtw.com</a>
18
					<div id="cart-widget" hx-swap-oob="true">
19
						@Cart_Widget(0)
20
					</div>
21
				</nav>
22
			</header>
23
			<main>
24
				{ children... }
25
			</main>
26
			<footer>
27
				<p>tonybtw</p>
28
			</footer>
29
		</body>
30
	</html>
31
}