website-theme/layouts/partials/webmentions.html

14 lines
735 B
HTML
Raw Normal View History

2022-05-08 18:02:35 -04:00
<!-- Webmentions -->
<div id="webmentions"></div>
{{ $siteHost := (urls.Parse .Site.BaseURL).Host -}}
<form method="post" action="https://webmention.io/{{ $siteHost }}/webmention">
2023-12-28 12:44:55 -05:00
<p style="display: inline-block;">Published a response to this? <label for="webmention-source">Let me know the URL</label>:</p>
2022-05-08 18:02:35 -04:00
<input type="url" name="source" id="webmention-source">
<input type="hidden" name="target" value="{{ .Permalink }}">
2023-12-28 12:44:55 -05:00
<button type="submit">Submit</button>
2022-05-08 18:02:35 -04:00
</form>
</main>
{{ $webmentionjs := resources.Get "js/webmention.min.js" }}
2022-05-20 16:56:06 -04:00
{{ $aliasesCombined := delimit (apply .Aliases "absURL" ".") "|" }}
<script src="{{ $webmentionjs.Permalink }}" {{ printf "add-urls=%s" $aliasesCombined | safeHTMLAttr }} async></script>