Created
July 18, 2014 20:43
-
-
Save neotericdesign/22dd03a4770843006c8f to your computer and use it in GitHub Desktop.
Selectively display Postach.io tags not in a list called skiptags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if post.tags %} | |
<ul class="post-tags"> | |
{% for tag in post.tags %} | |
{% if tag not in skiptags %} | |
<li><a href="/tag/{{ tag }}">{{ tag }}</a></li> | |
{% endif %} | |
{% endfor %} | |
</ul> | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment