diff options
author | Alejandro <[email protected]> | 2024-07-30 21:37:10 -0600 |
---|---|---|
committer | Alejandro <[email protected]> | 2024-07-30 21:37:10 -0600 |
commit | 2a2df0786a1bd1ffd040be078963b95412cd2c69 (patch) | |
tree | 2ca05c1012b2b165559f234be3d663e341fd0ab2 /layouts/shortcodes | |
parent | d387c8ff0624a5b6c9e1e7e8f94f968f4e3dcd64 (diff) |
added: list of software engineering teachers
Diffstat (limited to 'layouts/shortcodes')
-rw-r--r-- | layouts/shortcodes/list-sof-teachers.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/layouts/shortcodes/list-sof-teachers.html b/layouts/shortcodes/list-sof-teachers.html new file mode 100644 index 0000000..82bd4ec --- /dev/null +++ b/layouts/shortcodes/list-sof-teachers.html @@ -0,0 +1,8 @@ +<ul> +{{ $p := where site.Pages "Params.tags" "intersect" (slice "sof" "docente") }} +{{ range $p }} + +<li>{{.Title}}</li> + +{{ end }} +</ul> |