summaryrefslogtreecommitdiffstats
path: root/layouts/blog/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/blog/list.html')
-rw-r--r--layouts/blog/list.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/layouts/blog/list.html b/layouts/blog/list.html
new file mode 100644
index 0000000..2749943
--- /dev/null
+++ b/layouts/blog/list.html
@@ -0,0 +1,21 @@
+{{ define "main" }}
+<main>
+ <div class="container">
+ <div class="left flex">
+ </div>
+ <div class="center flex">
+ <article class="content">
+ <h1>{{ .Title }}</h1>
+
+ {{ .Content }}
+
+ {{ range (where .Site.RegularPages "Section" "blog") }}
+ {{ .Render "summary"}}
+ {{ end }}
+ </article>
+ </div>
+ <div class="right flex">
+ </div>
+ </div>
+</main>
+{{ end }}