summaryrefslogtreecommitdiff
path: root/layouts/shortcodes
diff options
context:
space:
mode:
authorAlejandro <[email protected]>2024-08-14 20:37:46 -0600
committerAlejandro <[email protected]>2024-08-14 20:37:46 -0600
commit65b7120b456f37ae263f553c780a2769ff5176fc (patch)
tree884ed111ae59b4acd619e1da776d0df8582c07fa /layouts/shortcodes
parent18787e0275cc528fe5a5f6d0468ed301355c3850 (diff)
added: link to subject
Diffstat (limited to 'layouts/shortcodes')
-rw-r--r--layouts/shortcodes/list-common-subjects.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/shortcodes/list-common-subjects.html b/layouts/shortcodes/list-common-subjects.html
index 23de35f..6b30119 100644
--- a/layouts/shortcodes/list-common-subjects.html
+++ b/layouts/shortcodes/list-common-subjects.html
@@ -1,6 +1,6 @@
<ul>
{{ $p := where site.Pages "Params.tags" "intersect" (slice "common-subject") }}
{{ range $p }}
-<li>{{.Title}}</li>
+<li><a href="{{.RelPermalink}}">{{.Title}}</a></li>
{{end}}
</ul>