summaryrefslogtreecommitdiffstats
path: root/examples/blog/layouts/_default/single.html
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-03-05 15:47:59 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-03-06 11:09:41 +0100
commit76c1248f70300e7c10f24d8c5a4eb095eddc6da5 (patch)
treec8678f6e6b7e8f3cb99c6386b0a25d578643bea1 /examples/blog/layouts/_default/single.html
parent9e76507da289e0ef0b24e820ef0ce139900e2250 (diff)
Remove the examples/ folder
These are not maintained and do not belong in this repository.
Diffstat (limited to 'examples/blog/layouts/_default/single.html')
-rw-r--r--examples/blog/layouts/_default/single.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/examples/blog/layouts/_default/single.html b/examples/blog/layouts/_default/single.html
deleted file mode 100644
index 13a53f666..000000000
--- a/examples/blog/layouts/_default/single.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{{ partial "header.html" . }}
-<body>
-{{ partial "navbar.html" . }}
-<div class="container">
- <div class="row">
- <div class="col-md-9">
- <div class="well well-sm">
- <h3>{{ .Title }}<br> <small>{{ .Description }}</small></h3>
- <hr>
- {{ .Content }}
- </div>
- </div>
-
- <!-- Sidebar -->
- <div class="col-md-3">
- {{ partial "menu.html" . }}
- </div>
- </div>
-{{ partial "footer.copyright.html" . }}
-</div>
-{{ partial "footer.html" . }}