summaryrefslogtreecommitdiff
path: root/.zs/layout.html
diff options
context:
space:
mode:
Diffstat (limited to '.zs/layout.html')
-rw-r--r--.zs/layout.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/.zs/layout.html b/.zs/layout.html
new file mode 100644
index 0000000..a171791
--- /dev/null
+++ b/.zs/layout.html
@@ -0,0 +1,44 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <!-- Meta Tags -->
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta property="og:title" content="{{ title }}" />
+ <meta property="og:type" content="website" />
+ <meta property="og:url" content="http://delta.twoexem.com" />
+ <meta property="og:description" content="{{ description }}" />
+ <meta name="theme-color" content="#ecb256">
+ <title>{{ title }} - darkuss' website</title>
+
+ <!-- Favicon -->
+ <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
+ <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
+ <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
+
+ <!-- Stylesheets -->
+ {{ styles }}
+
+ <!-- Scripts -->
+ {{ scripts }}
+ </head>
+
+ <body>
+ <div id="lower"></div>
+ <div id="upper">
+ <nav>
+ <ul>
+ {{ generate_nav }}
+ </ul>
+ </nav>
+ <div>
+ <main><div>{{ content }}</div></main>
+ <footer class="subtle">
+ <span>made with <span style="color: var(--red)">&lt;3</span> by darkuss</span
+ ><span>built with <a href="https://git.mills.io/prologic/zs">zs</a></span
+ ><span>last modified: <time datetime="{{ current_date }}">{{ current_date }}</time></span>
+ </footer>
+ </div>
+ </div>
+ </body>
+</html>