Files
tallytome/view/layout/base.templ
Itsigo 05b4ffab16 fix: js not working on page swap
also fixed saving throw percentages being used on heling operations
2024-04-01 20:52:51 +00:00

31 lines
612 B
Plaintext

package layout
templ Base(hx bool) {
if hx == false {
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="/tallytome.css"/>
<script src="/scripts/htmx.js"></script>
<script src="/scripts/tallytome.js"></script>
<title>Tallytome</title>
</head>
<body>
<header>
@header()
</header>
<main>
{ children... }
</main>
// <footer>
// @footer()
// </footer>
</body>
</html>
} else {
{ children... }
}
}