summaryrefslogtreecommitdiffstats
path: root/themes/rusticus/layouts/knowledge-base/list.html
diff options
context:
space:
mode:
authorRomeo Disca <romeo.disca@gmail.com>2019-05-23 21:45:52 +0200
committerRomeo Disca <romeo.disca@gmail.com>2019-05-23 21:45:52 +0200
commit85dbee049c2f031d96419abe6571de09bed5c1ac (patch)
tree03d3da402b7b7076de97d223d78d20711465db1b /themes/rusticus/layouts/knowledge-base/list.html
parentfea7367ccd55ed1af5f06001ae28b5fb2cfe5351 (diff)
add about
Diffstat (limited to 'themes/rusticus/layouts/knowledge-base/list.html')
-rw-r--r--themes/rusticus/layouts/knowledge-base/list.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/themes/rusticus/layouts/knowledge-base/list.html b/themes/rusticus/layouts/knowledge-base/list.html
new file mode 100644
index 0000000..970424b
--- /dev/null
+++ b/themes/rusticus/layouts/knowledge-base/list.html
@@ -0,0 +1,22 @@
+
+{{ partial "header/header.html" . }}
+
+<main class="list">
+ <h1>{{ .Title }}</h1>
+ <p>{{ .Summary }}</p>
+ <ul>
+ {{ range .Pages }}
+
+ <li class="list-entry">
+ <a href="{{.Permalink}}">
+ <span class="title">{{.Title}}</span>
+ <span class="summary">{{.Summary}}</span>
+ </a>
+ </li>
+
+ {{ end }}
+ </ul>
+</main>
+{{ partial "aside.html" . }}
+
+{{ partial "footer/footer.html" . }}