summaryrefslogtreecommitdiffstats
path: root/layouts/bunkerage
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-08-23 12:18:55 +0100
committerMatthew Lemon <matt@matthewlemon.com>2022-08-23 12:18:55 +0100
commitc3db8713b501b3bbd6ef01d35710cebe9180bc14 (patch)
treef632e6e9d2ba992ed5c5b74fd6344e143a80c90d /layouts/bunkerage
parentaf950d652e30ef33c2d738c2005db130b993fcfe (diff)
added bunkerage and protected area
Diffstat (limited to 'layouts/bunkerage')
-rw-r--r--layouts/bunkerage/list.html7
-rw-r--r--layouts/bunkerage/single.html13
2 files changed, 20 insertions, 0 deletions
diff --git a/layouts/bunkerage/list.html b/layouts/bunkerage/list.html
new file mode 100644
index 0000000..9b142cc
--- /dev/null
+++ b/layouts/bunkerage/list.html
@@ -0,0 +1,7 @@
+{{ define "main" }}
+
+{{ .Content }}
+
+Toss
+
+{{ end }}
diff --git a/layouts/bunkerage/single.html b/layouts/bunkerage/single.html
new file mode 100644
index 0000000..3ef8472
--- /dev/null
+++ b/layouts/bunkerage/single.html
@@ -0,0 +1,13 @@
+{{ define "main" }}
+
+<style type="text/css" media="screen">
+ li {
+ margin-bottom: 1.2em;
+ }
+</style>
+
+<h2 class="title">{{ .Title }}</h2>
+
+{{ .Content }}
+
+{{ end }}