diff options
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/bunkerage/list.html | 7 | ||||
-rw-r--r-- | layouts/bunkerage/single.html | 13 |
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 }} |