1
0
Fork 0
forked from github/pelican

Some browsers like Lynx render adjacent links without implicit spaces.

Put an extra space at the end of each link to a tag so that Lynx doesnt render
the tags as a single word.
This commit is contained in:
Mario Lang 2014-02-09 15:17:23 +01:00
commit e500e64ebd

View file

@ -1,2 +1,2 @@
{% if article.tags %}<p>tags: {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% endfor %}</p>{% endif %}
{% if article.tags %}<p>tags: {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> {% endfor %}</p>{% endif %}
{% if PDF_PROCESSOR %}<p><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">get the pdf</a></p>{% endif %}