Files
htmx-go-todo/templates/index.html
Emanuel Turis ccb0c914e5 Initial commit
2023-10-13 22:20:05 +03:00

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 }}