Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions templates/blog/inclusions/_tags.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ <h3 class="widget-title">标签云</h3>
<ul>
{% for tag in tag_list %}
<li>
<a href="{% url 'blog:tag' tag.pk %}">{{ tag.name }} <span class="post-count">({{ tag.num_posts }})</a>
<a href="{% url 'blog:tag' tag.pk %}">{{ tag.name }} <span class="post-count">({{ tag.num_posts }})</span></a>
</li>
{% empty %}
暂无标签!
{% endfor %}
</ul>
</div>
</div>