cambio de imagenes en valores y en metodología
11
.gitignore
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
# Ignorar archivos de configuración de IDEs
|
||||
.venv
|
||||
venv
|
||||
|
||||
# Ignorar todo en /static/uploads
|
||||
/static/uploads/*
|
||||
/cache/*
|
||||
|
||||
# ¡Pero no ignores el archivo .gitkeep!
|
||||
!/static/uploads/.gitkeep
|
||||
!/cache/.gitkeep
|
@ -90,10 +90,10 @@
|
||||
/* ---------------------------- */
|
||||
/* IMÁGENES DE FONDO */
|
||||
/* ---------------------------- */
|
||||
.p1 { background-image: url('/static/y_img/about-us/team.avif'); }
|
||||
.p2 { background-image: url('/static/y_img/about-us/mision.avif'); }
|
||||
.p3 { background-image: url('/static/y_img/about-us/vision.avif'); }
|
||||
.p4 { background-image: url('/static/y_img/about-us/valores.avif'); }
|
||||
.p1 { background-image: url('/static/y_img/about-us/team.webp'); }
|
||||
.p2 { background-image: url('/static/y_img/about-us/mision.webp'); }
|
||||
.p3 { background-image: url('/static/y_img/about-us/vision.webp'); }
|
||||
.p4 { background-image: url('/static/y_img/about-us/valores.webp'); }
|
||||
|
||||
|
||||
/* ============================================ */
|
||||
|
Before Width: | Height: | Size: 133 KiB |
BIN
static/y_img/about-us/mision.webp
Normal file
After Width: | Height: | Size: 286 KiB |
Before Width: | Height: | Size: 419 KiB |
BIN
static/y_img/about-us/team.webp
Normal file
After Width: | Height: | Size: 140 KiB |
Before Width: | Height: | Size: 252 KiB |
BIN
static/y_img/about-us/valores.webp
Normal file
After Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 255 KiB |
BIN
static/y_img/about-us/vision.webp
Normal file
After Width: | Height: | Size: 458 KiB |
@ -11,10 +11,11 @@
|
||||
|
||||
|
||||
|
||||
<img id="random-img" alt="Imagen aleatoria" data-aos="fade-up" data-aos-delay="0" data-aos-duration="800">
|
||||
<img src="{{ url_for('static', filename='y_img/methodology/m-02.svg') }}" alt="Metodología" data-aos="fade-up" data-aos-delay="0" data-aos-duration="800">
|
||||
|
||||
|
||||
<script>
|
||||
<!-- <img id="random-img" alt="Imagen aleatoria" data-aos="fade-up" data-aos-delay="0" data-aos-duration="800"> -->
|
||||
<!-- <script>
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
const images = [
|
||||
"{{ url_for('static', filename='y_img/methodology/m-01.svg') }}",
|
||||
@ -23,8 +24,7 @@
|
||||
const randomIndex = Math.floor(Math.random() * images.length);
|
||||
document.getElementById("random-img").src = images[randomIndex];
|
||||
});
|
||||
</script>
|
||||
|
||||
</script> -->
|
||||
|
||||
|
||||
{% endblock body %}
|
||||
|