Initial commit
All checks were successful
golangci-lint / lint (push) Successful in 19m8s

This commit is contained in:
2024-08-25 16:40:48 +02:00
commit 12fbb06666
20 changed files with 612 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{{ define "footer" }}
<div class="footbar">
<div class="container">
<div class="row">
<footer class="footer full-width">
<p class="mtop">
<a href="#" target="_blank"></a>
</p>
</footer>
</div>
</div>
</div>
{{ end }}

View File

@ -0,0 +1,26 @@
<!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>

View File

@ -0,0 +1,14 @@
{{ define "navbar" }}
<div class="navbar">
<div class="container">
<div class="row">
<div class="navigation">
<a href="/">Logo</a>
<ul class="navigation-items">
<li class="navigation-item"><a class="navigation-link" href="/">Home</a></li>
</ul>
</div>
</div>
</div>
</div>
{{ end }}

View File

@ -0,0 +1,28 @@
<!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">
<h2>Not Found</h2>
<p>Page not Found</p>
<p>Request-ID: {{ .RequestID }}</p>
</div>
</div>
{{ template "footer" }}
</body>
</html>