diff options
Diffstat (limited to 'layouts')
-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> |