Skip to content

Instantly share code, notes, and snippets.

@neotericdesign
Created July 18, 2014 20:43
Show Gist options
  • Save neotericdesign/22dd03a4770843006c8f to your computer and use it in GitHub Desktop.
Save neotericdesign/22dd03a4770843006c8f to your computer and use it in GitHub Desktop.
Selectively display Postach.io tags not in a list called skiptags
{% 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