Liqiud basics
Modules
API
Mailer
Tags
Overview
Below you can see all the available drops on the tags object
| Name | Description |
| tags.all | Array of all kind of tags on the whole site |
| tags.events | Array of all tags on events |
| tags.articles | Array of all tags on articles |
| tags.pages | Array of all tags on pages |
| tags.files | Array of all tags on files |
Tag
Use a loop to get all the tags. You can find all of the available properties you can get from the tag object.
Snippets
Get the tags belonging to an event
{% assign test = calendars.test %}
{% for event in test.events.10 %}
{% for tag in event.tags %}
{{ tag.name }}
{% endfor %}
{% endfor %}Updated: 2020-11-17