aboutsummaryrefslogtreecommitdiff
path: root/html/master.tmpl.html
diff options
context:
space:
mode:
authorthinkpadmaster <a.scerba02@gmail.com>2023-07-13 23:35:05 -0500
committerthinkpadmaster <a.scerba02@gmail.com>2023-07-13 23:35:05 -0500
commitfca693f8cf2eeeae92939488b63127a90030c8fb (patch)
treebfe7d75448b9d2714f024e7d783d3e901facfbab /html/master.tmpl.html
parente864807341990f5c72e198d96740983bf7671584 (diff)
Extreme structure changes and file renames. Move to new template format.
Diffstat (limited to 'html/master.tmpl.html')
-rw-r--r--html/master.tmpl.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/html/master.tmpl.html b/html/master.tmpl.html
new file mode 100644
index 0000000..49b3060
--- /dev/null
+++ b/html/master.tmpl.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html lang="en-US">
+
+ <head>
+
+ <meta charset="utf-8" />
+ <meta name="author" content="Alexander Rees Scerba" />
+ <title>{{block "title" .}}Page{{end}} - Alex Scerba</title>
+ <meta name="description" content="{{block "description" .}}Alex's personal site{{end}}" />
+ <meta name="keywords" content="{{block "keywords" .}}personal site{{end}}">
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <link rel="stylesheet" href="/static/style.css" />
+ <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon" />
+
+ </head>
+
+ <body>
+
+ <input type="checkbox" class="toggler">
+ <div class="hamburger"><div></div></div>
+ <nav aria-labelledby="global-navigation" class="menu">
+ <a href="/">Home</a>
+ <a href="/projects">Projects</a>
+ <a href="/blog">Blog</a>
+ <a href="/about">About</a>
+ </nav>
+
+ <main>
+
+{{ template "main" . }}
+
+ </main>
+ </body>
+
+</html>