test
test test test
{% if collection.description != '' %}
<div class="user-content {% if settings.lightbox_imgs %}lightboximages{% endif %}">
{{ collection.description }}
</div>
{% endif %}
{% if settings.coll_desc_pos == 'above' %}
<h1 class="majortitle">{{ collection.title | escape }}</h1>
{% endif %}
{% comment %} Find out if we have any tags to show, and the categories to use {% endcomment %}
{% assign show_normal_filter = false %}
{% assign tag_cats = '' %}
{% unless settings.coll_hide_tags %}
{% for tag in collection.all_tags %}
{% if tag contains 'meta-filter-' %}
{% assign cat_name = tag | remove: 'meta-filter-' | split: '-' | first %}
{% unless tag_cats contains cat_name %}
{% capture tag_cats %}{{ tag_cats }},{{ cat_name }}{% endcapture %}
{% endunless %}
{% else %}
{% unless tag contains 'meta-' %}{% assign show_normal_filter = true %}{% endunless %}
{% endif %}
{% endfor %}
{% endunless %}
<div class="user-content {% if settings.lightbox_imgs %}lightboximages{% endif %}">
{{ collection.description }}
</div>
{% endif %}
{% if settings.coll_desc_pos == 'above' %}
<h1 class="majortitle">{{ collection.title | escape }}</h1>
{% endif %}
{% comment %} Find out if we have any tags to show, and the categories to use {% endcomment %}
{% assign show_normal_filter = false %}
{% assign tag_cats = '' %}
{% unless settings.coll_hide_tags %}
{% for tag in collection.all_tags %}
{% if tag contains 'meta-filter-' %}
{% assign cat_name = tag | remove: 'meta-filter-' | split: '-' | first %}
{% unless tag_cats contains cat_name %}
{% capture tag_cats %}{{ tag_cats }},{{ cat_name }}{% endcapture %}
{% endunless %}
{% else %}
{% unless tag contains 'meta-' %}{% assign show_normal_filter = true %}{% endunless %}
{% endif %}
{% endfor %}
{% endunless %}