Remove title from feed content bottom links

This commit is contained in:
Will Faught
2025-02-14 21:49:33 -08:00
parent 176d24e38d
commit 7c5520de70
2 changed files with 2 additions and 2 deletions

View File

@@ -122,7 +122,7 @@
{{ if and $content $external }}
{{ $text := or (.Param "paige.feeds.page_link" | markdownify) "⏎" }}
{{ $footer := printf `<p><a href="%s" title="%s">%s</a></p>` .Permalink (htmlEscape .Title) $text | safeHTML }}
{{ $footer := printf `<p><a href="%s">%s</a></p>` .Permalink $text | safeHTML }}
{{ $content = print $content $footer }}
{{ end }}