diff options
author | Alejandro <[email protected]> | 2024-08-14 20:37:46 -0600 |
---|---|---|
committer | Alejandro <[email protected]> | 2024-08-14 20:37:46 -0600 |
commit | 65b7120b456f37ae263f553c780a2769ff5176fc (patch) | |
tree | 884ed111ae59b4acd619e1da776d0df8582c07fa /layouts/shortcodes | |
parent | 18787e0275cc528fe5a5f6d0468ed301355c3850 (diff) |
added: link to subject
Diffstat (limited to 'layouts/shortcodes')
-rw-r--r-- | layouts/shortcodes/list-common-subjects.html | 2 |
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> |