From 61a4b8442a7c783d0ab2a64500e1267129d866c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Camilo=20Gonz=C3=A1lez?= Date: Thu, 8 Feb 2024 18:22:12 -0500 Subject: [PATCH 1/7] =?UTF-8?q?=F0=9F=90=9B=20correr=20ts-node=20en=20node?= =?UTF-8?q?20.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 84ce051..88025b6 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "astro": "astro", "lint": "prettier --check .", "lint:fix": "prettier --write --list-different .", - "datos": "nodemon ./procesador/procesador.ts" + "datos": "nodemon --exec node --loader ts-node/esm ./procesador/procesador.ts" }, "dependencies": { "@astrojs/check": "^0.4.1", From e7f3351f88e048c1aa60a5f8215b12ad82cb285b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Camilo=20Gonz=C3=A1lez?= Date: Thu, 8 Feb 2024 18:22:39 -0500 Subject: [PATCH 2/7] =?UTF-8?q?=F0=9F=9A=A7=20dejar=20botones=20para=20vis?= =?UTF-8?q?tas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/componentes/Cabezote.astro | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/componentes/Cabezote.astro b/src/componentes/Cabezote.astro index 75703fc..f21c948 100644 --- a/src/componentes/Cabezote.astro +++ b/src/componentes/Cabezote.astro @@ -8,9 +8,13 @@ +

Haciendo Caminos

-
Proyectos
+
    +
  • Proyectos
  • +
      Egresados
    +
@@ -34,7 +38,7 @@ position: fixed; top: 0; width: 100%; - height: 50px; + height: var(--altoMenu); color: var(--textoClaro); z-index: 9; text-transform: uppercase; @@ -79,7 +83,7 @@ } // Botón para cambiar de vista (proyectos / egresados) - #botonVista { + .botonVista { cursor: pointer; &:hover { From 451a3521d8db868c879b72ba24a9b02f814cd9bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Camilo=20Gonz=C3=A1lez?= Date: Thu, 8 Feb 2024 18:23:34 -0500 Subject: [PATCH 3/7] =?UTF-8?q?=F0=9F=9A=A7=20mostrar=20proyectos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/index.astro | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/pages/index.astro b/src/pages/index.astro index 7fcadba..2c6ae44 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -3,6 +3,7 @@ import ListaNodos from '@/componentes/ListaNodos.astro'; import Mapa from '@/componentes/Mapa.astro'; import Plantilla from '@/plantillas/Plantilla.astro'; import listas from '../../estaticos/listas.json'; +import proyectos from '../../estaticos/proyectos.json'; import LineaTiempo from '@/componentes/LineaTiempo.astro'; import Ficha from '@/componentes/Ficha.astro'; import Cabezote from '@/componentes/Cabezote.astro'; @@ -28,6 +29,17 @@ import Introduccion from '@/componentes/Introduccion.astro'; +
    + { + proyectos && + proyectos.map((proyecto) => ( +
    +

    {proyecto.nombre.nombre}

    +
    + )) + } +
+
@@ -234,4 +246,16 @@ import Introduccion from '@/componentes/Introduccion.astro'; bottom: 0; width: 100vw; } + + #listaProyectos { + position: fixed; + top: var(--altoMenu); + right: 0px; + z-index: 3; + font-size: 0.65em; + height: 70vh; + overflow: auto; + padding-bottom: 5em; + width: 40vw; + } From 10b9af3f4c3cf9dbb9e097914d7a457f0d52a7ef Mon Sep 17 00:00:00 2001 From: anattolia Date: Fri, 9 Feb 2024 11:57:10 -0500 Subject: [PATCH 4/7] =?UTF-8?q?=F0=9F=92=84=20Agregar=20estilo=20a=20lista?= =?UTF-8?q?=20de=20proyectos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/componentes/Cabezote.astro | 2 +- src/componentes/Introduccion.astro | 2 +- src/pages/index.astro | 61 ++++++++++++++++++++++++++---- src/scss/_constantes.scss | 6 +++ src/scss/estilos.scss | 3 +- 5 files changed, 63 insertions(+), 11 deletions(-) diff --git a/src/componentes/Cabezote.astro b/src/componentes/Cabezote.astro index f21c948..3913438 100644 --- a/src/componentes/Cabezote.astro +++ b/src/componentes/Cabezote.astro @@ -92,7 +92,7 @@ } #menuListas { - height: 100%; + height: var(--altoMenu); width: 50px; background-color: var(--resaltadoVerde); display: flex; diff --git a/src/componentes/Introduccion.astro b/src/componentes/Introduccion.astro index 4d1d5b8..c4a3c0c 100644 --- a/src/componentes/Introduccion.astro +++ b/src/componentes/Introduccion.astro @@ -110,7 +110,7 @@ @media screen and (min-width: $corte3) { #introduccion { width: 30vw; - right: 10px; + left: 10px; padding: 2em 5em; } } diff --git a/src/pages/index.astro b/src/pages/index.astro index 2c6ae44..a4dd88a 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -30,12 +30,13 @@ import Introduccion from '@/componentes/Introduccion.astro';
    +

    Proyectos

    { proyectos && proyectos.map((proyecto) => ( -
    -

    {proyecto.nombre.nombre}

    -
    +
      +
    • {proyecto.nombre.nombre}
    • +
    )) }
@@ -51,11 +52,27 @@ import Introduccion from '@/componentes/Introduccion.astro';