mirror of
https://github.com/rottenwheel/hugo-rottenwheel.git
synced 2024-11-10 06:03:28 +01:00
feat(layouts): add main template for latest posts
This commit is contained in:
parent
23ca72070a
commit
7ac23ec03b
13
layouts/index.html
Normal file
13
layouts/index.html
Normal file
@ -0,0 +1,13 @@
|
||||
{{ define "main" }}
|
||||
<h1>{{ .Title }}</h1>
|
||||
<p>{{ .Description }}</p>
|
||||
|
||||
<h2>Latest Posts</h2>
|
||||
<ul>
|
||||
{{ range where .Site.RegularPages "Section" "posts" }}
|
||||
<li>
|
||||
<a href="{{ .Permalink }}">{{ .Title }}</a> - {{ .Date.Format "2006-01-02" }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }}
|
Loading…
Reference in New Issue
Block a user