diff options
author | Alejandro <[email protected]> | 2024-08-03 22:45:24 -0600 |
---|---|---|
committer | Alejandro <[email protected]> | 2024-08-03 22:45:24 -0600 |
commit | 7baa68499d65b2ca6e04731b8cef07f171660115 (patch) | |
tree | 77b718ac03c761ed8481b2684f0fdd40b9d5afc9 | |
parent | 7e88d88710cfcc7fda0ae2b8f9f67d0c7e6f92fb (diff) |
added: tag course for better cross language listing
3 files changed, 4 insertions, 1 deletions
diff --git a/content/es/departamentos/educacion-continua/cursos/curso-excel.md b/content/es/departamentos/educacion-continua/cursos/curso-excel.md index e718aae..d966f1f 100644 --- a/content/es/departamentos/educacion-continua/cursos/curso-excel.md +++ b/content/es/departamentos/educacion-continua/cursos/curso-excel.md @@ -1,3 +1,4 @@ +++ title = 'Curso Excel' +tags = ['course'] +++ diff --git a/content/es/departamentos/educacion-continua/cursos/curso-word.md b/content/es/departamentos/educacion-continua/cursos/curso-word.md index a4c0d05..6b55a59 100644 --- a/content/es/departamentos/educacion-continua/cursos/curso-word.md +++ b/content/es/departamentos/educacion-continua/cursos/curso-word.md @@ -1,3 +1,4 @@ +++ title = 'Curso Word' +tags = ['course'] +++ diff --git a/layouts/shortcodes/count-cursos.html b/layouts/shortcodes/count-cursos.html index d0fd9e9..7a06d8c 100644 --- a/layouts/shortcodes/count-cursos.html +++ b/layouts/shortcodes/count-cursos.html @@ -1 +1,2 @@ -{{ len (where .Site.RegularPages "Section" "==" "cursos") }} +{{ $p := where site.RegularPages "Params.tags" "intersect" (slice "course") }} +{{ len $p }} |