When calling items from and array in a Liquid template, how do you call does not contain or not in array?
does not contain
not in array
you could do something like this:
{% if collection.tags contains 'tag' %} {% else %} do stuff! {% endif %}