aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/index.html
diff options
context:
space:
mode:
authorMatt Kohls <mattkohls13@gmail.com>2020-01-27 00:04:18 -0500
committerMatt Kohls <mattkohls13@gmail.com>2020-01-27 00:04:18 -0500
commita2717c2d00c2176a5c6a9fb0a3fb3b47ffa397cd (patch)
treea749077273ba9c6c149c23a7166679ff35e175a9 /layouts/index.html
parent6c53b50ec3afaabbe3f09c6e838baf63e17499b1 (diff)
downloadsimplesource-a2717c2d00c2176a5c6a9fb0a3fb3b47ffa397cd.tar.gz
simplesource-a2717c2d00c2176a5c6a9fb0a3fb3b47ffa397cd.tar.bz2
simplesource-a2717c2d00c2176a5c6a9fb0a3fb3b47ffa397cd.zip
Getting uniform look across pages, hugo be weird
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html35
1 files changed, 25 insertions, 10 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 624f3a0..e0c9263 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,13 +1,28 @@
{{ partial "header.html" . }}
-<div class="content">
- {{ .Content }}
+<main>
+ <header class="header-inline">
+ <div class="heading">
+ <div class="info">
+ <div class="content">
+ {{ if (gt .Params.date 0) }} {{ .Date.Format "January 2, 2006" }} {{ end }} {{ if (gt .Params.author 0) }} by {{ with .Params.author }} {{ . }} {{ end }} {{ end }}
+ </div>
+ </div>
+ <div class="content">
+ <h1>{{ .Title | markdownify }}</h1>
+ </div>
+ </div>
+ </header>
- <ul>
- {{ range .Site.RegularPages }}
- <li>{{ .Date.Format "January 2, 2006" }}
- <a href="{{ .URL }}">{{ .Title | markdownify }}</a>
- </li>
- {{ end }}
- </ul>
-</div>
+ <div class="content">
+ {{ .Content }}
+
+ <ul>
+ {{ range where .Site.RegularPages "Section" "posts" }}
+ <li>{{ .Date.Format "January 2, 2006" }}
+ <a href="{{ .URL }}">{{ .Title | markdownify }}</a>
+ </li>
+ {{ end }}
+ </ul>
+ </div>
+</main>
{{ partial "footer.html" . }}