summaryrefslogtreecommitdiffstats
path: root/themes/rusticus/layouts/section/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/rusticus/layouts/section/list.html')
-rw-r--r--themes/rusticus/layouts/section/list.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/themes/rusticus/layouts/section/list.html b/themes/rusticus/layouts/section/list.html
new file mode 100644
index 0000000..2bbf85e
--- /dev/null
+++ b/themes/rusticus/layouts/section/list.html
@@ -0,0 +1,30 @@
+
+{{ partial "header/header.html" . }}
+
+<main class="list">
+ <h1>{{ .Title }}</h1>
+ <p class="summary">{{ .Summary }}</p>
+ <section>
+ {{ .Content }}
+ </section>
+
+ <ul>
+ {{ range .Paginator.Pages }}
+
+ <li class="list-entry">
+ <a href="{{.Permalink}}">
+ <span class="date">{{.Date.Format (print .Site.Params.dateformat)}}</span>
+ <span class="title">{{.Title}}</span>
+ <span class="summary">{{.Summary}}</span>
+ </a>
+ </li>
+
+ {{ end }}
+ </ul>
+
+ {{ template "_internal/pagination.html" . }}
+
+</main>
+{{ partial "aside.html" . }}
+
+{{ partial "footer/footer.html" . }}