initial commit

This commit is contained in:
2025-08-30 17:15:58 +03:00
commit d36a853f94
8 changed files with 201 additions and 0 deletions

4
templates/about.html Normal file
View File

@@ -0,0 +1,4 @@
{{define "content"}}
<h1>abouaboutt</h1>
<p>im supoer cool</p>
{{end}}

7
templates/footer.html Normal file
View File

@@ -0,0 +1,7 @@
<footer>
<ul>
<li>
Monero XMR: <code>44KiSSaf5h7MGd3GqAaNZc45DdwC7q9BmCtsZ9knfsCNj7PyipHfBvBUZVHiBUU8dMJJ82MfPBZdzVugUs7BnANT6SUyDsN</code>
</li>
</ul>
</footer>

6
templates/header.html Normal file
View File

@@ -0,0 +1,6 @@
<header>
<p>
<a href="/" target="_top"><b> Home</b></a><b> |
<a href="/about" target="_top">About</a></b>
</p>
</header>

5
templates/home.html Normal file
View File

@@ -0,0 +1,5 @@
{{define "content"}}
<h1>Kisu's homepage</h1>
<p>Resist Resist Resist</p>
{{end}}

19
templates/layout.html Normal file
View File

@@ -0,0 +1,19 @@
{{define "layout"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
{{template "header.html" .}}
<main>
{{block "content" .}} {{end}}
{{template "footer.html" .}}
</main>
</body>
</html>
{{end}}