diff --git a/README.md b/README.md index 9c744ed..c6463f3 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,7 @@ params: utterancesIssue: "" # optional utterancesLabel: "" # optional webmentions: + url: https://yourdomain.com/webemntions/receive login: hugo-theme-anubis pingback: true @@ -130,6 +131,10 @@ To hide a post from the RSS feed, just add `disable_feed: true` to its front mat ### Pagination on post single page Enabled by `paginationSinglePost` param in `params` section of config. +### Webmentions +To provide webmention support you can **either** specify your webmention.io username with `login: webmentionusername` **or** specify a link to your custom webmention endpoint with `url: https://yourdomain.com/webemntions/receive`. +If you use webmention.io you can also enable pingback with `pingback: true` + ## Contributing If you find a bug or have an idea for a feature, feel free to write an [issue](https://github.com/mitrichius/hugo-theme-anubis/issues) or make a PR. diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 826dbe2..fcc84a4 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -15,7 +15,8 @@ {{ end }}
© {{ if isset .Site.Params "author"}}{{ .Site.Params.author }}, {{end}}{{ now.Year }}
- {{ i18n "powered" | humanize }} Hugo, {{ i18n "theme" }} Anubis.
+ {{ i18n "powered" | humanize }} Hugo, {{ i18n "theme" }} Anubis.
+ {{ partial "footer-extra.html" . }}