Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html18
1 files changed, 15 insertions, 3 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 6765bd5..3c67c9f 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -59,9 +59,21 @@
{{ end }}
{{if not .Params.hideComments }}
- <section class="my-5 py-5 ">
- <h2>Comments</h2>
- {{ template "_internal/disqus.html" . }}
+ <section class="my-5 py-5 relative">
+ <h2>Interactions</h2>
+
+ {{if .Site.Params.webmention }}
+ <h3>Webmentions</h3>
+ {{ partial "webmentions.html" . }}
+
+ <h3>Comments</h3>
+ {{end}}
+
+ {{ if not .Site.IsServer }}
+ {{ template "_internal/disqus.html" . }}
+ {{ else }}
+ Disqus doesn't load in development mode
+ {{ end }}
</section>
{{ end }}
</article>