estradiol.cloud/layouts/index.html

19 lines
445 B
HTML
Raw Normal View History

2024-03-04 22:59:15 +00:00
{{ define "main" }}
<main aria-role="main">
<div class="homepage-content">
<!-- content/_index.md -->
{{ .Content }}
</div>
<div>
<h2>Recently</h2>
<ul>
{{ range first 10 .Site.RegularPages }}
<li class="nomarker">
{{ .PublishDate | time.Format "2006-01-02" }} — <a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
</li>
{{ end }}
</ul>
</div>
</main>
{{ end }}