diff options
author | Alejandro <[email protected]> | 2024-07-30 21:36:49 -0600 |
---|---|---|
committer | Alejandro <[email protected]> | 2024-07-30 21:36:49 -0600 |
commit | d387c8ff0624a5b6c9e1e7e8f94f968f4e3dcd64 (patch) | |
tree | f9cd48ee0e2dd523bed17542b35467019d2c68b8 | |
parent | 72f4c23232e4ecab7a1e4f574b62671db2742158 (diff) |
added: shortcode for software engineering head
-rw-r--r-- | content/es/licenciatura/ingenieria-de-software.md | 2 | ||||
-rw-r--r-- | layouts/shortcodes/list-sof-chief.html | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/content/es/licenciatura/ingenieria-de-software.md b/content/es/licenciatura/ingenieria-de-software.md index 9e3c5d4..22713d2 100644 --- a/content/es/licenciatura/ingenieria-de-software.md +++ b/content/es/licenciatura/ingenieria-de-software.md @@ -10,6 +10,8 @@ Análisis, planificación, construcción e implementación de soluciones de soft # Contacto +{{< list-sof-chief >}} + # Objetivos ## General diff --git a/layouts/shortcodes/list-sof-chief.html b/layouts/shortcodes/list-sof-chief.html new file mode 100644 index 0000000..72f7493 --- /dev/null +++ b/layouts/shortcodes/list-sof-chief.html @@ -0,0 +1,6 @@ +{{ $p := where site.Pages "Params.tags" "intersect" (slice "coordinador-sof") }} +{{ range $p }} + +<h2>{{.Title}}</h2> + +{{ end }} |