diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/hugo-pt2021/layouts/partials/head.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/themes/hugo-pt2021/layouts/partials/head.html b/themes/hugo-pt2021/layouts/partials/head.html index 56e7887..422347d 100644 --- a/themes/hugo-pt2021/layouts/partials/head.html +++ b/themes/hugo-pt2021/layouts/partials/head.html @@ -48,4 +48,12 @@ {{- range .AlternativeOutputFormats -}} {{- printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML -}} {{- end -}} + + {{/* activitypub URL */}} + {{- if .Site.Params.activityPubUrl -}} + <link + rel='me' + href='{{ .Site.Params.activityPubUrl }}' + /> + {{- end -}} </head> |