continuing

This commit is contained in:
Robin Müller 2023-12-08 17:53:31 +01:00
parent 82f93344c8
commit 4f3b7a4b26
Signed by: muellerr
GPG Key ID: A649FB78196E3849
3 changed files with 18 additions and 6 deletions

View File

@ -4,6 +4,4 @@ date = 2023-01-01T08:00:00-07:00
draft = false
+++
Laborum voluptate pariatur ex culpa magna nostrud est incididunt fugiat
pariatur do dolor ipsum enim. Consequat tempor do dolor eu. Non id id anim anim
excepteur excepteur pariatur nostrud qui irure ullamco.
Test.

17
layouts/index.html Normal file
View File

@ -0,0 +1,17 @@
{{ 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>
<!-- TODO: Somehow display the site summary as flexboxes? -->
{{ range first 10 .Site.RegularPages }}
{{ .Render "summary" }}
{{ end }}
</div>
</main>
{{ end }}

View File

@ -3,6 +3,3 @@
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
{{ partialCached "head/css.html" . }}
<!--
{{ partialCached "head/js.html" . }}
-->