diff options
Diffstat (limited to 'html/master.tmpl.html')
-rw-r--r-- | html/master.tmpl.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/html/master.tmpl.html b/html/master.tmpl.html new file mode 100644 index 0000000..2857701 --- /dev/null +++ b/html/master.tmpl.html @@ -0,0 +1,49 @@ +<!DOCTYPE html>
+<html lang="en-US">
+ <head>
+ <meta charset="UTF-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="author" content="Alexander Rees Scerba" />
+ <title>{{block "title" .}}Page{{end}} - Scerba.org</title>
+ <meta name="description" content="{{block "description" .}}Alex's personal site{{end}}" />
+ <meta name="keywords" content="{{block "keywords" .}}personal site{{end}}">
+ <link rel="canonical" href="https://www.scerba.org{{block "canonical" .}}{{end}}">
+ <link rel="stylesheet" href="./static/style.css" />
+ <link rel="shortcut icon" href="./static/favicon.ico" type="image/x-icon" />
+ </head>
+ <body>
+ <header>
+ <div class="top-bar">
+ <a href="/" class="logo-w-name">
+ <!--<img src="/static/logo.svg" alt="Logo" class="logo"/>-->
+ <span class="name">Alex Scerba</span>
+ </a>
+ <div class="main-nav-position">
+ <input type="checkbox" class="toggler">
+ <div class="hamburger"><div></div></div>
+ <nav aria-labelledby="global-navigation" class="main-nav">
+ <a href="/">Home</a>
+ <a href="/blog">Blog</a>
+ <a href="/gallery">Gallery</a>
+ <a href="/about">About</a>
+ <a href="/faq">FAQ</a>
+ </nav>
+ </div>
+ </div>
+ {{ block "landing" . }}{{ end }}
+ </header>
+
+ <main>
+ {{ template "main" . }}
+ </main>
+
+ <footer>
+ <!-- <img src="/static/logo.svg" alt="Logo" class="footer-logo"/> -->
+ <address>
+ <p>Contact: <a href="mailto:alex@scerba.org">alex@scerba.org</a></p>
+ <p>Design Site: <a href="https://alexscerba.com" target="_blank" rel="noopener noreferrer">alexscerba.com</a></p>
+ </address>
+ </footer>
+ </body>
+</html>
|