I changed the class name of these elements in a prior commit and forgot to update this template.
11 lines
425 B
HTML
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>
|