diff options
author | Skiz <skiznet@aol.com> | 2024-07-18 01:40:46 -0400 |
---|---|---|
committer | Skiz <skiznet@aol.com> | 2024-07-18 01:40:46 -0400 |
commit | a7c9f46c1aa196815a8d107f618a23447bcbce05 (patch) | |
tree | 6026b0ff05819b5c0322f78916a407ec50421baa /themes/schizo/layouts | |
parent | 0461a2812d652bef3a13ab78bd99da722a9717a8 (diff) |
Updated index.html
Diffstat (limited to 'themes/schizo/layouts')
-rw-r--r-- | themes/schizo/layouts/index.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/themes/schizo/layouts/index.html b/themes/schizo/layouts/index.html index e69de29..117cf27 100644 --- a/themes/schizo/layouts/index.html +++ b/themes/schizo/layouts/index.html @@ -0,0 +1,36 @@ +{{ define "title" -}} +{{ .Title | title }} +{{- end }} +{{ define "main" -}} +{{ .Content }} + +<style> +p { + text-align: center ; +} +h3 { + color: #ffa500; +} +</style> + +<p>I am Skiz, this is my webpage. Thank you for visiting my site.</p> + +<h3>Posts</h3> + +<ul> +{{- range.Pages }} +<li> + {{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> – {{ end +-}} + <a href="{{ .RelPermalink }}">{{ .Title }}</a> + {{- if .Param "authorsinlist" }} + {{ with .Params.authors }} + by + {{ delimit . ", " " and " }} + {{end}} + {{ end -}} +</li> +{{- end }} +</ul> +{{- end }} + |