You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{% for year in ns.years.keys()|sort(reverse=True) %}
56
56
<sectionclass="archive-year" id="archive-{{ year }}">
57
-
<h2><ahref="/{{ year }}/{{ pagination_page1_suffix }}">{{ year }}</a><spanclass="archive-post-count">({{ year_counts[year] }} {{ 'post' if year_counts[year] == 1 else 'posts' }})</span></h2>
57
+
<h2><ahref="/{{ year }}/{{ pagination_page1_suffix }}"aria-label="Archive for {{ year }}">{{ year }}</a><spanclass="archive-post-count">({{ year_counts[year] }} {{ 'post' if year_counts[year] == 1 else 'posts' }})</span></h2>
58
58
59
59
{% for month_key in ns.years[year].keys()|sort(reverse=True) %}
60
60
{% set month_count = ns.years[year][month_key]['posts']|length %}
61
61
<sectionclass="archive-month" id="archive-{{ year }}-{{ month_key }}">
62
-
<h3><ahref="/{{ year }}/{{ month_key }}/{{ pagination_page1_suffix }}">{{ ns.years[year][month_key]['name'] }}</a><spanclass="archive-post-count">({{ month_count }} {{ 'post' if month_count == 1 else 'posts' }})</span></h3>
62
+
<h3><ahref="/{{ year }}/{{ month_key }}/{{ pagination_page1_suffix }}"aria-label="Archive for {{ ns.years[year][month_key]['name'] }} {{ year }}">{{ ns.years[year][month_key]['name'] }}</a><spanclass="archive-post-count">({{ month_count }} {{ 'post' if month_count == 1 else 'posts' }})</span></h3>
63
63
64
64
<ulclass="archive-post-list">
65
65
{% for post in ns.years[year][month_key]['posts'] %}
0 commit comments