Files
website/layouts/partials/page-list-section.html
Akshay Kolli e240b99cb2
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m44s
Initial website deployment
2026-07-02 00:28:25 -07:00

26 lines
905 B
HTML

{{ with .pages }}
<section class="home-section" id="{{ $.id }}" aria-labelledby="{{ $.id }}-heading">
<h2 id="{{ $.id }}-heading">{{ $.title }}</h2>
<div class="item-list">
{{ range .ByWeight }}
<article class="item-row">
<div class="item-year">{{ with .Date }}{{ .Format "2006" }}{{ end }}</div>
<div>
<a class="item-title" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ with .Description }}<p class="row-summary">{{ . }}</p>{{ end }}
{{ with .Params.status }}<div class="item-meta">{{ . }}</div>{{ end }}
{{ with .Params.links }}
<div class="item-links">
{{ range . }}
<a href="{{ .url }}">{{ .label }}</a>
{{ end }}
</div>
{{ end }}
</div>
</article>
{{ end }}
</div>
</section>
{{ end }}