Files
cnt-sindikatua/views/partials/top-bar.twig

57 lines
2.4 KiB
Twig
Raw Normal View History

2025-07-24 09:32:19 +00:00
<div class="container">
2025-08-21 07:21:36 +00:00
2025-07-17 09:34:11 +00:00
<div class="row align-items-center py-1">
2025-08-21 07:21:36 +00:00
2025-07-17 09:34:11 +00:00
<!-- Izquierda: Botones -->
<div class="col">
2025-08-21 07:21:36 +00:00
{% if languages %}
2025-07-17 09:34:11 +00:00
<div class="btn-bar d-flex align-items-center">
2025-08-21 07:21:36 +00:00
{% for lang in languages %}
{% if lang.slug == 'es' or lang.slug == 'cas' %}
{# Botón Castellano #}
<a href="{{ lang.url }}"
class="btn {{ lang.current ? 'btn-dark' : 'btn-outline-dark' }} btn-sm ms-2"
{% if lang.current %}aria-current="page"{% endif %}>
<span class="d-inline d-sm-none">CAS</span>
<span class="d-none d-sm-inline">CASTELLANO</span>
</a>
{% elseif lang.slug == 'eu' or lang.slug == 'eus' %}
{# Botón Euskera #}
<a href="{{ lang.url }}"
class="btn {{ lang.current ? 'btn-dark' : 'btn-outline-dark' }} btn-sm ms-2"
{% if lang.current %}aria-current="page"{% endif %}>
<span class="d-inline d-sm-none">EUS</span>
<span class="d-none d-sm-inline">EUSKARA</span>
</a>
{% endif %}
{% endfor %}
</div>
{% else %}
<div style="background: #ffeeee; padding: 10px; border: 1px solid red;">
❌ No se encontraron idiomas
2025-07-17 09:34:11 +00:00
</div>
2025-08-21 07:21:36 +00:00
{% endif %}
2025-07-17 09:34:11 +00:00
</div>
2025-07-24 09:32:19 +00:00
<!-- Right side: RRSS -->
2025-07-17 09:34:11 +00:00
<div class="col d-flex justify-content-end">
2025-08-13 08:58:35 +00:00
2025-07-25 11:51:11 +00:00
{% include "partials/btn-search.twig" with {'items': menu.get_items} %}
2025-08-13 08:58:35 +00:00
2025-07-17 09:34:11 +00:00
<div class="btn-group m-1" role="group" aria-label="First group">
2025-07-24 09:32:19 +00:00
{% for red in redes_sociales %}
<a href="{{ red.url }}" class="btn btn-outline-dark btn-sm pt-0" target="_blank" rel="noopener noreferrer">
{% if red.imagen %}
<img src="{{ red.imagen.url }}" alt="{{ red.imagen.alt }}" class="social-icon pt-1 svg-hover-white">
{% else %}
<i class="bi bi-globe"></i> {# Icono por defecto si no hay imagen #}
{% endif %}
</a>
{% endfor %}
2025-07-17 09:34:11 +00:00
</div>
</div>
2025-07-24 09:32:19 +00:00
2025-07-17 09:34:11 +00:00
</div>
2025-08-21 07:21:36 +00:00
2025-07-17 09:34:11 +00:00
</div>