{% set pressLinks = [
horse.externalHref|default(null),
horse.externalPicture,
horse.externalForm,
horse.externalBet
]|filter(v => v is not empty) %}
{% set title = "press" %}
{% if pressLinks %}
{% embed 'network/widget/widget.html.twig' %}
{% block content %}
<ul class="grid gap-3">
{% for link in pressLinks %}
{% if link|url_meta_title %}
<li class="flex gap-2">
{% include 'icons/weblink.svg.twig' with { class: 'w-5 h-5 mt-px flex-shrink-0' } %}
<a data-turbo="false" href="{{ link }}"
target="_blank"
title="{{ link|url_meta_title }} {{ link|url_meta_description }}"
class="grid leading-tight"
rel="noopener noreferrer">
<span class="truncate">{{ link|url_meta_title }}</span>
<span class="text-sm truncate text-neutral-500">
{{ link|url_meta_description }}
</span>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
{% endblock %}
{% endembed %}
{% endif %}