From 38c923dacfe2154d5616e60899dd7a266f9ec041 Mon Sep 17 00:00:00 2001
From: Alejandro <alex.mac.fon@gmail.com>
Date: Wed, 14 Aug 2024 12:42:59 -0600
Subject: added: listing common subjects shortcode

---
 layouts/shortcodes/list-common-subjects.html | 6 ++++++
 1 file changed, 6 insertions(+)
 create mode 100644 layouts/shortcodes/list-common-subjects.html

(limited to 'layouts')

diff --git a/layouts/shortcodes/list-common-subjects.html b/layouts/shortcodes/list-common-subjects.html
new file mode 100644
index 0000000..23de35f
--- /dev/null
+++ b/layouts/shortcodes/list-common-subjects.html
@@ -0,0 +1,6 @@
+<ul>
+{{ $p := where site.Pages "Params.tags" "intersect" (slice "common-subject") }}
+{{ range $p }}
+<li>{{.Title}}</li>
+{{end}}
+</ul>
-- 
cgit v1.2.3