summaryrefslogtreecommitdiffstats
path: root/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--layouts/index.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..95320cc
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,15 @@
+{{ define "main" }}
+ <main aria-role="main">
+ <div class="homepage-content">
+ <!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
+ {{.Content}}
+ </div>
+ <div>
+ {{ range first 10 .Site.RegularPages }}
+ {{ .Render "about"}}
+ {{ end }}
+ </div>
+ </main>
+{{ end }}
+
+