hugo-theme-termlite/layouts/partials/page/section_year_nav.html
Eryn Wells 1eba82c96b Fix the name of tag__list-item elements
I changed the class name of these elements in a prior commit and forgot to
update this template.
2024-11-26 13:44:29 -07:00

11 lines
425 B
HTML

<nav class="year-nav tag">
<span class="tag__name">{{ i18n "yearsTagTitle" }}</span>
<ul class="tag__value--list">
{{ range .years -}}
<li class="tag__list-item"><a href="#{{ .Date | time.Format "2006" }}">{{ .LinkTitle }}</a></li>
{{ end }}
{{ if .includeCollapsedYearItem -}}
<li class="tag__list-item"><a href="#older">{{ i18n "olderPagesSectionTitle" }}</a></li>
{{ end }}
</ul>
</nav>