Merge pull request #1039

Blog: separate post categories with a comma
This commit is contained in:
luigi1111 2020-06-15 09:18:32 -05:00 committed by GitHub
commit 3e8b85ae61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ title: titles.allposts
{% t blog.author %} {{ post.author }} | {{ post.date | date: "%-d %B %Y" }}<br> {% t blog.author %} {{ post.author }} | {{ post.date | date: "%-d %B %Y" }}<br>
Category: Category:
{% for tag in post.tags %} {% for tag in post.tags %}
<a href="/blog/tags/{{ tag }}.html">{{ tag }}</a> <a href="/blog/tags/{{ tag }}.html">{{ tag }}</a>{% unless forloop.last %},{% endunless %}
{% endfor %} {% endfor %}
</small> </small>
</p> </p>