Valentin Brandl
12fbb06666
All checks were successful
golangci-lint / lint (push) Successful in 19m8s
27 lines
458 B
HTML
27 lines
458 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="./static/js/htmx.org@2.0.2.js"></script>
|
|
<!-- <link href="css/style.css" rel="stylesheet"> -->
|
|
<title>Hello, World!</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ template "navbar" }}
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<p>Content</p>
|
|
</div>
|
|
</div>
|
|
|
|
{{ template "footer" }}
|
|
|
|
</body>
|
|
|
|
</html>
|