Eliminado borde superior y circulo consultoria para todos

This commit is contained in:
2025-09-04 10:28:56 +00:00
parent b0b24a7e6a
commit 099f7cca24

View File

@@ -9,17 +9,18 @@
{% set icon = '' %}
{% for subitem in item.children %}
{% if 'investigacion' in subitem.slug %}
{#% if 'investigacion' in subitem.slug %}
{% set icon = 'icono_investigacion_2x.png' %}
{% else %}
{% set icon = 'icono_' ~ subitem.slug ~ '_2x.png' %}
{% endif %}
{% endif %#}
{% set icon = 'icono_consultoria_2x.png' %}
{% if servicio not in subitem.slug %}
<div class="col-md">
<a href="{{ subitem.url }}" class="d-block border-bottom-0 pr-md-4 {% if loop.last %}{% elseif is_desktop %}border-right{% endif %} h-100" style="background:url('{{site.theme.link}}/public/img/{{ icon }}') no-repeat 85% 85%;">
<div class="linea linea-{{ subitem.slug }} mb-3"></div>
<div class="frontpage-servicios-title font-weight-bold">{{ subitem.title }}</div>
{#<div class="linea linea-{{ subitem.slug }} mb-3"></div>#}
<div class="frontpage-servicios-title font-weight-bold pt-3">{{ subitem.title }}</div>
</a>
</div>
{% endif %}