Skip to content

Commit

Permalink
Merge pull request #88 from FreyZhang007/master_dev
Browse files Browse the repository at this point in the history
fix tags single page bug
  • Loading branch information
Jieiku authored Aug 17, 2022
2 parents 830caba + 9ef10d5 commit 6e6c0cb
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 6e6c0cb

Please sign in to comment.