2022-05-08 18:02:35 -04:00
|
|
|
<!-- Webmentions -->
|
2024-10-29 12:02:03 -04:00
|
|
|
<div class="noprint" id="webmentions"></div>
|
2022-11-25 23:22:28 -05:00
|
|
|
{{ $siteHost := (urls.Parse .Site.BaseURL).Host -}}
|
2024-10-29 12:02:03 -04:00
|
|
|
<form class="noprint" 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>
|