diff options
author | Alejandro <[email protected]> | 2024-08-03 11:47:49 -0600 |
---|---|---|
committer | Alejandro <[email protected]> | 2024-08-03 11:47:49 -0600 |
commit | 51eb13cb08e401f32b13e5f34a4593dac40d4a4d (patch) | |
tree | 894ad02267a70d7654828ba286a84c34c18065a4 | |
parent | a630cf21ca90ff102ef5ed4f1d23a66af9397d38 (diff) |
added: list the chief of this areas
-rw-r--r-- | layouts/shortcodes/list-cad-chief.html | 8 | ||||
-rw-r--r-- | layouts/shortcodes/list-cd-chief.html | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/layouts/shortcodes/list-cad-chief.html b/layouts/shortcodes/list-cad-chief.html new file mode 100644 index 0000000..4e49e5f --- /dev/null +++ b/layouts/shortcodes/list-cad-chief.html @@ -0,0 +1,8 @@ +{{ $p := where site.Pages "Params.tags" "intersect" (slice "coordinador-cad") }} +{{ range $p }} + +<h2>{{.Title}}</h2> + +<ul>{{.Summary}}</ul> + +{{ end }} diff --git a/layouts/shortcodes/list-cd-chief.html b/layouts/shortcodes/list-cd-chief.html new file mode 100644 index 0000000..b229a33 --- /dev/null +++ b/layouts/shortcodes/list-cd-chief.html @@ -0,0 +1,8 @@ +{{ $p := where site.Pages "Params.tags" "intersect" (slice "coordinador-cd") }} +{{ range $p }} + +<h2>{{.Title}}</h2> + +<ul>{{.Summary}}</ul> + +{{ end }} |