{% set absolute_url = settings.url + "/" + link + "/" %}
{% if settings.settings.light_mode %}
{% set pathstatic = ".." %}
{% set absolute_url = absolute_url + pathstatic + "/" %}
{% else %}
{% set pathstatic = "." %}
{% endif %}
{% if gallery.cover %}
{% if gallery.cover.type == "video" %}
{% set cover = Video.get(link + "/" + pathstatic, gallery.cover) %}
{% else %}
{% set cover = Image.get(link + "/" + pathstatic, gallery.cover) %}
{% endif %}
{% endif %}
{% if gallery.description %}
{% endif %}
{% if gallery.tags %}
{% for tag in gallery.tags %}
{% endfor %}
{% endif %}