summaryrefslogtreecommitdiffstats
path: root/layouts/index.html
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2022-01-03 21:40:43 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2022-01-03 21:40:43 +0000
commit4d30e230a33ebbff25866879bb2d31a4f8711fec (patch)
treeb67095ae790de66e999b21127ad5092223382d83 /layouts/index.html
parent47932676235b90cdf033c31fdc62d52cfed7f168 (diff)
big changes to background and overriding css
Diffstat (limited to 'layouts/index.html')
-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 }}
+
+