Move the "tagged" bullet inside the conditional.
This commit is contained in:
parent
35458ce421
commit
968dae7551
1 changed files with 3 additions and 2 deletions
|
@ -6,8 +6,9 @@
|
|||
<header>
|
||||
<h2><a href="{{ SITEURL }}/{{ article.url }}#{{ article.slug }}">{{ article.title }}</a></h2>
|
||||
<p>
|
||||
Posted on {{ article.locale_date }} in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a> •
|
||||
{% if article.tags %}Tagged with
|
||||
Posted on {{ article.locale_date }} in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
|
||||
{% if article.tags %}
|
||||
• Tagged with
|
||||
{% for tag in article.tags %}
|
||||
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% if not loop.last %},{% endif %}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in a new issue