Portada nuestra red logotipos configurables

This commit is contained in:
2025-08-05 10:35:46 +00:00
parent d0a20314aa
commit ca70618978
3 changed files with 19 additions and 16 deletions

View File

@@ -190,6 +190,7 @@ class AndairaSite extends Site {
$context['quienes_somos'] = get_field('quienes_somos', 'option');
$context['presupuesto'] = get_field('presupuesto', 'option');
$context['contadores'] = get_field('contadores', 'option');
$context['nuestra_red'] = get_field('nuestra_red', 'option');
//Mobile Detect
$context['is_desktop'] = false;

View File

@@ -422,7 +422,7 @@ nav.navbar, .nav-link, .navbar-brand, .navbar-brand img { transition: all 1s eas
/* Section 2 bis */
@media (min-width:768px) {
#section-2-bis .project-row { height:300px; }
/* #section-2-bis .project-row { height:300px; } */
}
@media (max-width:768px) {
#section-2-bis .col-md-4 h3.text-white { padding:2rem .5rem 1rem; font-size:22px; letter-spacing:3px; margin:0px; height:100%; }
@@ -527,7 +527,7 @@ nav.navbar, .nav-link, .navbar-brand, .navbar-brand img { transition: all 1s eas
/* Section 5 */
#section-5 { padding-top:5rem; }
#section-5 .network-logos img { max-height:50px; margin:3rem 0; -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -o-filter: grayscale(100%); -ms-filter: grayscale(100%); filter: grayscale(100%);}
#section-5 .network-logos img { max-height:50px; margin:3rem 0; /*-webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -o-filter: grayscale(100%); -ms-filter: grayscale(100%); filter: grayscale(100%);*/}
#section-5 .section-5-title img { max-height:90px; margin:3rem 0; }
#section-5 p { font-size: 22px; line-height: 29px; }

View File

@@ -10,14 +10,25 @@
<div class="row">
<div class="col-md-4">
<div class="text-left section-5-title">
<img src="{{site.theme.link}}/public/img/tangente-logo.jpg" class="mb-4 img-fluid" alt="Tangente">
<p class="font-weight-bold">Andaira pertence al Grupo Cooperativo Tagente y se coordina con entidades de la economía social y solidaria</p>
{% for item in nuestra_red.entidades %}
{% if loop.first %}
<img src="{{ item.logotipo.url }}" class="mt-5 mb-4 img-fluid" alt="{{ item.nombre }}">
{% endif %}
{% endfor %}
<p class="font-weight-bold">{{ nuestra_red.descripcion }}</p>
</div>
</div>
<div class="col-md-8">
<div class="h-100 d-inline-block d-flex justify-content-between align-items-center pt-3 network-logos">
<div>
<div class="h-100 d-inline-block d-md-flex justify-content-between align-items-center pt-3 network-logos">
{% for item in nuestra_red.entidades %}
{% if not loop.first %}
<div class="pr-2">
<img src="{{ item.logotipo.url }}" class="img-fluid" alt="{{ item.nombre }}">
</div>
{% endif %}
{% endfor %}
{#<div>
<img src="{{site.theme.link}}/public/img/mercadosocial_logo.jpg" class="img-fluid" alt="Mercado Social">
</div>
<div>
@@ -31,16 +42,7 @@
</div>
<div class="d-none d-sm-block">
<img src="{{site.theme.link}}/public/img/cooperama_logo.jpg" class="img-fluid" alt="Cooperama">
</div>
{#<!--<div class="col-md-3 col text-center">
<img src="{{site.theme.link}}/public/img/demos_DEF.png" class="img-fluid" alt="Demos">
</div>
<div class="col-md-3 text-center d-none d-sm-block">
<img src="{{site.theme.link}}/public/img/move-commons_logo.png" class="img-fluid" alt="Move Commons">
</div>
<div class="col-md-3 text-center d-none d-sm-block">
<img src="{{site.theme.link}}/public/img/emprender_logoweb.png" class="img-fluid" alt="Emprender">
</div>-->#}
</div>#}
</div>
</div>
</div>