aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/home_section.html
diff options
context:
space:
mode:
Diffstat (limited to 'backend/templates/home_section.html')
-rw-r--r--backend/templates/home_section.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/backend/templates/home_section.html b/backend/templates/home_section.html
new file mode 100644
index 0000000..cf7595d
--- /dev/null
+++ b/backend/templates/home_section.html
@@ -0,0 +1,10 @@
+{{define "body"}}
+<main id="content">
+ {{ range .Sections }}
+ <div class="introduction">
+ <h1>{{ .Name }}</h1>
+ <p>{{ .Description }}</p>
+ </div>
+ {{ template "section_display" . }} {{ end }}
+</main>
+{{end}}