aboutsummaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2018-06-17 16:49:49 -0500
committerMelody Horn <melody@boringcactus.com>2018-06-17 16:49:49 -0500
commit759f312a5be5dc992c0aa3d1aab918c0df8b1a09 (patch)
treef4b07ba58d8b9993fbeb98141984257bd20b3acb /_layouts
parenta9682014e7eb0e2e6fb88d9d3969ac1ec1298de0 (diff)
downloadboringcactus.com-759f312a5be5dc992c0aa3d1aab918c0df8b1a09.tar.gz
boringcactus.com-759f312a5be5dc992c0aa3d1aab918c0df8b1a09.zip
add a post
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..a8d8e3f
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf-8" />
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<title>{{ page.title }} | boringcactus</title>
+<link rel="stylesheet" href="/site.css">
+</head>
+<body>
+<header>
+{% if page.url != "/" %}
+<p>(brought to you by <a href="/">boringcactus</a>)</p>
+{% endif %}
+</header>
+<main>
+{{ content }}
+</main>
+</body>
+</html>