diff options
Diffstat (limited to 'layouts/shortcodes/list-common-subjects.html')
-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> |