From 0e79c0d11028a7846119d6429548a57682e3d05a Mon Sep 17 00:00:00 2001 From: dzello Date: Thu, 26 Apr 2018 16:36:13 -0700 Subject: [PATCH] Add a layout for creating a presentation from a section --- layouts/_default/list.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 layouts/_default/list.html diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..a5d0355 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,15 @@ +{{ define "main" }} +
+ +
+ + {{ range .Pages }} + + {{ range (split .Content "
") }} + +
{{ . | safeHTML }}
+ {{ end }} + {{ end }} +
+
+{{ end }}