diff options
author | Dennis Eriksen <d@ennis.no> | 2023-01-20 12:06:49 +0100 |
---|---|---|
committer | Dennis Eriksen <d@ennis.no> | 2023-01-20 12:06:49 +0100 |
commit | d1d65c94b888c2959c9da799e4329161ede449ea (patch) | |
tree | 7551a0488ebd56d337a5bf22d7b5ec21a0a4a4e2 /layouts/index.html | |
parent | relative links on front page (diff) | |
download | rikerz-d1d65c94b888c2959c9da799e4329161ede449ea.tar.gz |
Made Riker into a Zola-theme - Rikerz
Diffstat (limited to 'layouts/index.html')
-rw-r--r-- | layouts/index.html | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/layouts/index.html b/layouts/index.html deleted file mode 100644 index 8a7cffa..0000000 --- a/layouts/index.html +++ /dev/null @@ -1,22 +0,0 @@ -{{ partial "head" . }} - -<header> - <a href="/"><img id="logo" src="{{ .Site.Params.logo }}" /></a> - <h1>{{ .Title }}</h1> -</header> -<main> -<p>{{ .Site.Params.intro }}</p> -<div class="archive"> - <h2>Archive</h2> - {{ range (where (where .Site.RegularPages "Params.hidden" "ne" "true") "Type" "post").GroupByDate "2006" }} - <h3 class="archive-title">{{ .Key }}</h3> - {{ range .Pages }} - <article class="list-item"> - <a href="{{ .RelPermalink }}" class="list-item-link">{{ .Title }}</a> - <span class="list-item-date">{{ .Date.Format "January 2, 2006" }}</span> - </article> - {{ end }} - {{ end }} -</div> -</main> -{{ partial "footer" . }} |