Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/category/list.html')
-rw-r--r--layouts/category/list.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layouts/category/list.html b/layouts/category/list.html
new file mode 100644
index 0000000..10f9e11
--- /dev/null
+++ b/layouts/category/list.html
@@ -0,0 +1,18 @@
+{{ define "main" }}
+
+<div class = "row">
+ <div class = "col-md-12">
+ <h1>Category: {{ .Title }}</h1>
+ </div>
+</div>
+{{ with .Content }}
+<div class = "row">
+ <div class = "col">
+ {{ . }}
+ </div>
+</div>
+{{- end -}}
+
+{{ partial "taxonomy-episodes.html" . }}
+
+{{ end }}