MODIFY title
This commit is contained in:
@ -1,9 +1,7 @@
|
|||||||
{% extends 'layouts/base.twig' %}
|
{% extends 'layouts/base.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p class="alert alert-info" role="alert">
|
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">DOCUMENTOS</p>
|
||||||
<i class="bi bi-folder-fill"></i>
|
|
||||||
Dokumentuak / Documentos</p>
|
|
||||||
|
|
||||||
<section class="documentos">
|
<section class="documentos">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
@ -40,14 +38,14 @@
|
|||||||
<div>
|
<div>
|
||||||
{% if doc.documento_url %}
|
{% if doc.documento_url %}
|
||||||
<a href="{{ doc.documento_url }}"
|
<a href="{{ doc.documento_url }}"
|
||||||
class="btn btn-primary btn-sm me-2"
|
class="btn btn-sm me-2 btn-primary-cnt"
|
||||||
target="_blank">
|
target="_blank">
|
||||||
<i class="bi bi-eye-fill"></i>
|
<i class="bi bi-eye-fill"></i>
|
||||||
Ver documento
|
Ver documento
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a href="{{ doc.documento_url }}" download
|
<a href="{{ doc.documento_url }}" download
|
||||||
class="btn btn-primary btn-sm me-2" >
|
class="btn btn-sm me-2 btn-primary-cnt" >
|
||||||
<i class="bi bi-cloud-download-fill"></i>
|
<i class="bi bi-cloud-download-fill"></i>
|
||||||
Descargar
|
Descargar
|
||||||
</a>
|
</a>
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
{% extends 'layouts/base.twig' %}
|
{% extends 'layouts/base.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p class="alert alert-info" role="alert">
|
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">ENLACES</p>
|
||||||
<i class="bi bi-link-45deg"></i>
|
|
||||||
Enlaces</p>
|
|
||||||
|
|
||||||
{% if enlaces %}
|
{% if enlaces %}
|
||||||
<div class="enlaces">
|
<div class="enlaces">
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
{% extends 'layouts/base.twig' %}
|
{% extends 'layouts/base.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p class="alert alert-info" role="alert">
|
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">INDUSTRIA</p>
|
||||||
<i class="bi bi-folder-fill"></i>
|
|
||||||
Industria</p>
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,41 +1,44 @@
|
|||||||
{% extends 'layouts/base.twig' %}
|
{% extends 'layouts/base.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'partials/breadcrumb.twig' %}
|
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">NOTICIAS</p>
|
||||||
|
|
||||||
{% if recent_posts_noticias %}
|
<section class="posts-noticias">
|
||||||
{% for noticias in recent_posts_noticias %}
|
{% if recent_posts_noticias %}
|
||||||
|
{% for noticias in recent_posts_noticias %}
|
||||||
|
|
||||||
<div class="card my-3 position-relative">
|
<div class="card my-3 position-relative">
|
||||||
<div class="row g-0">
|
<div class="row g-0">
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<img src="{{ noticias.thumbnail.src }}"
|
<img src="{{ noticias.thumbnail.src }}"
|
||||||
class="rounded-start object-fit-cover w-100 h-100"
|
class="rounded-start object-fit-cover w-100 h-100"
|
||||||
alt="{{ noticias.thumbnail.alt }}"
|
alt="{{ noticias.thumbnail.alt }}"
|
||||||
style="min-height: 200px;"
|
style="min-height: 200px;"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<div class="card-body" style="padding-bottom: 60px;">
|
<div class="card-body" style="padding-bottom: 60px;">
|
||||||
<h5 class="card-title">{{ noticias.title }}</h5>
|
<h5 class="card-title">{{ noticias.title }}</h5>
|
||||||
<p class="card-text"> {{
|
<p class="card-text"> {{
|
||||||
noticias.excerpt({
|
noticias.excerpt({
|
||||||
words: 50,
|
words: 50,
|
||||||
read_more: ''
|
read_more: ''
|
||||||
})
|
})
|
||||||
}}</p>
|
}}</p>
|
||||||
<p class="card-text"><small class="text-body-secondary">{{ noticias.date }}</small></p>
|
<p class="card-text"><small class="text-body-secondary">{{ noticias.date }}</small></p>
|
||||||
<a href="{{ noticias.link }}"
|
<a href="{{ noticias.link }}"
|
||||||
class="btn btn-secondary position-absolute"
|
class="btn position-absolute btn-secondary-cnt"
|
||||||
style="position: absolute; bottom: 15px; right: 15px; z-index: 10;"
|
style="position: absolute; bottom: 15px; right: 15px; z-index: 10;"
|
||||||
>Sigue leyendo...</a>
|
>Sigue leyendo...</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<h2>no hay artículos</h2>
|
<h2>no hay artículos</h2>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</section>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
{% extends 'layouts/base.twig' %}
|
{% extends 'layouts/base.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p class="alert alert-info" role="alert">
|
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">SERVICIOS PRIVADOS</p>
|
||||||
<i class="bi bi-folder-fill"></i>
|
|
||||||
Servicios Privados</p>
|
|
||||||
|
|
||||||
<section class="grid servicios-privados">
|
<section class="grid servicios-privados">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
{% extends 'layouts/base.twig' %}
|
{% extends 'layouts/base.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p class="alert alert-info" role="alert">
|
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">SERVICIOS PÚBLICOS</p>
|
||||||
<i class="bi bi-folder-fill"></i>
|
|
||||||
Servicios Públicos</p>
|
|
||||||
|
|
||||||
<section class="grid servicios-publicos">
|
<section class="grid servicios-publicos">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
{% extends 'layouts/base.twig' %}
|
{% extends 'layouts/base.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'partials/breadcrumb.twig' %}
|
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">VÍDEOS</p>
|
||||||
|
|
||||||
|
|
||||||
<div class="container text-center">
|
<div class="container text-center">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{% extends 'layouts/base.twig' %}
|
{% extends 'layouts/base.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">ACERCA DE LA CNT</p>
|
||||||
|
|
||||||
<div class="container mt-4">
|
<div class="container mt-4">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
Reference in New Issue
Block a user