summaryrefslogtreecommitdiff
path: root/layouts/articles/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/articles/single.html')
-rw-r--r--layouts/articles/single.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/layouts/articles/single.html b/layouts/articles/single.html
new file mode 100644
index 0000000..62a23d3
--- /dev/null
+++ b/layouts/articles/single.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+
+<!--
+ vim: shiftwidth=4 tabstop=4 noexpandtab
+-->
+
+<html>
+
+ <head>
+
+ <title>xengineering</title>
+
+ <meta charset="utf-8"/>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" href="{{ "style.css" | absURL }}" type="text/css">
+
+ </head>
+
+ <body>
+
+ <header>
+ <nav>
+ <a href="{{ "/" | absURL }}">Home</a>
+ <nav>
+ <h1>{{ .Params.Title }}</h1>
+ <p>{{ .Params.Subtitle }}</p>
+ </header>
+
+ <main>
+ {{ .Content }}
+ {{ partial "footer.html" . }}
+ </main>
+
+ </body>
+
+</html>