Kumi
bd33e958ac
Updated the title across the website from "rottenwheel" to "rottenblog". Also removed title and description elements from the homepage layout.
11 lines
No EOL
241 B
HTML
11 lines
No EOL
241 B
HTML
{{ define "main" }}
|
|
|
|
<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 }} |