{% if block["items"] %}
{% for item in block["items"] %}
{{ item.label }}
{% if item.href %}
{{ item.value }}
{% else %}
{{ item.value }}
{% endif %}
{% endfor %}
{% endif %}
{% if block.primary_links %}
{% set ns = namespace(period_links=[], regular_links=[]) %}
{% for link in block.primary_links %}
{% if link.period %}
{% set ns.period_links = ns.period_links + [link] %}
{% else %}
{% set ns.regular_links = ns.regular_links + [link] %}
{% endif %}
{% endfor %}
{% if ns.period_links %}
{% set active_period_link = ns.period_links | selectattr('active') | list | first %}
{% if not active_period_link %}
{% set active_period_link = ns.period_links[0] %}
{% endif %}
{% endif %}
{% for link in ns.regular_links %}
{{ link.label }}
{% endfor %}
{% endif %}