summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro <[email protected]>2024-08-03 11:47:49 -0600
committerAlejandro <[email protected]>2024-08-03 11:47:49 -0600
commit51eb13cb08e401f32b13e5f34a4593dac40d4a4d (patch)
tree894ad02267a70d7654828ba286a84c34c18065a4
parenta630cf21ca90ff102ef5ed4f1d23a66af9397d38 (diff)
added: list the chief of this areas
-rw-r--r--layouts/shortcodes/list-cad-chief.html8
-rw-r--r--layouts/shortcodes/list-cd-chief.html8
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 }}