33 lines
766 B
HTML
33 lines
766 B
HTML
|
|
{{if in site.Params.commentSections .Type}}
|
|
<hr>
|
|
<h3>Comments</h3>
|
|
|
|
<p>To reply to this post, you can send a <a href="https://indieweb.org/Webmention" target="_blank">Webmention</a> or you can toot me at <a href="https://mastodon.social/@fundor333" target="_blank">fundor333@mastodon.social</a>
|
|
|
|
{{ partial "webmention" . }}
|
|
|
|
{{ $params := .Params.comments }}
|
|
{{ with .Params.comments.id}}
|
|
{{ partial "mastodon" $params }}
|
|
{{ end }}
|
|
|
|
|
|
<a href='https://brid.gy/publish/bluesky'></a>
|
|
<a href='https://brid.gy/publish/mastodon'></a>
|
|
{{end}}
|
|
|
|
{{if in site.Params.suggestionSections .Type}}
|
|
<br>
|
|
{{ $related := .Site.RegularPages.Related . | first 5 }}
|
|
|
|
{{ with $related }}
|
|
<h3>See Also</h3>
|
|
|
|
{{ range . }}
|
|
{{ partial "postCard" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{end}}
|