summaryrefslogtreecommitdiff
path: root/_default
diff options
context:
space:
mode:
Diffstat (limited to '_default')
-rwxr-xr-x_default/baseof.html44
-rw-r--r--_default/single.html6
2 files changed, 50 insertions, 0 deletions
diff --git a/_default/baseof.html b/_default/baseof.html
new file mode 100755
index 0000000..3a2c806
--- /dev/null
+++ b/_default/baseof.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <link rel="icon" href="logo.png" width="192" height="192">
+ <link rel="preconnect" href="https://fonts.googleapis.com">
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+ <link href="https://fonts.googleapis.com/css2?family=Balthazar&display=swap" rel="stylesheet">
+ <link rel="stylesheet" href="/style.css">
+ {{ $title := site.Title }}
+ {{ if not .IsHome }}
+ {{ $title = printf "%s | %s" .Title site.Title }}
+ {{ end }}
+ <title>
+ {{ $title }}
+ </title>
+ </head>
+
+
+ <header>
+ <img src="/logo.png">
+ <div class="topnav">
+ {{ partial "menu.html" . }}
+ </div>
+ <br>
+ </header>
+
+ <body>
+ <div class="box">
+ <main>
+ {{ block "main" . }}{{ end }}
+ </main>
+ </div>
+ </body>
+
+ <body>
+ <div class="contact">
+ </div>
+ </body>
+
+ <footer>
+ <p>Designed by <a style="color:#174372;" href="https://btkoch.xyz">Kocher Web Styling</a></p>
+ </footer>
+</html>
diff --git a/_default/single.html b/_default/single.html
new file mode 100644
index 0000000..c7110a4
--- /dev/null
+++ b/_default/single.html
@@ -0,0 +1,6 @@
+{{ define "main" }}
+
+<h1><u>{{ .Title }}</u></h1>
+{{ .Content }}
+
+{{ end }}