mirror of
https://github.com/ducky-labs/htmx-go-todo.git
synced 2026-02-04 06:31:00 +00:00
16 lines
437 B
HTML
16 lines
437 B
HTML
{{ define "Base" }}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>HTMX Go Todo</title>
|
|
<link href="/static/index.css" rel="stylesheet" />
|
|
<script src="/static/htmx.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<p class="text-5xl">Hello, world!</p>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|