Skip to content

Commit

Permalink
fix tags single page bug
Browse files Browse the repository at this point in the history
  • Loading branch information
korbinZhang committed Aug 17, 2022
1 parent 830caba commit 9ef10d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/tags/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<h2>{{ term.name }}</h2>
{%- for year, posts in term.pages | group_by(attribute="year") %}
<h3>{{ year }}</h3>
{%- for page in term.pages %}
{%- for page in posts %}
<p><a href="{{ page.permalink | safe }}">{{ page.title }}</a> - <time datetime="{{ page.date }}">{{ page.date | date(format="%F") }}</time></p>
{%- endfor %}
{%- endfor %}
Expand Down

0 comments on commit 9ef10d5

Please sign in to comment.