diff --git a/themes/nipponalba/layouts/_default/single.html b/themes/nipponalba/layouts/_default/single.html
index d6511035..558ba097 100644
--- a/themes/nipponalba/layouts/_default/single.html
+++ b/themes/nipponalba/layouts/_default/single.html
@@ -29,7 +29,7 @@
{{ $pathJSON := (print .Permalink "bridgy.json") }}
{{ $relpathJSON := (print .RelPermalink "bridgy.json") }}
-{{ if fileExists $relpathJSON }}
+{{ if fileExists $pathJSON }}
{{ $mJSON := getJSON $pathJSON }}
Syndicated to
Pleroma
@@ -42,14 +42,21 @@
- {{ if eq .Type "article"}}
- {{ if .Site.DisqusShortname -}}
-
- {{- end }}
- {{ end }}
+
+
+
+{{ $pathJSON := (print "data" (strings.TrimSuffix "/" .Permalink) ".json") }}
+{{ if fileExists $pathJSON }}
+
+ {{ $mJSON := getJSON $pathJSON }}
+ {{ partial "webmention.html" $mJSON }}
+
+{{ end }}
{{ else }}
diff --git a/themes/nipponalba/layouts/partials/webmention.html b/themes/nipponalba/layouts/partials/webmention.html
new file mode 100644
index 00000000..add7c677
--- /dev/null
+++ b/themes/nipponalba/layouts/partials/webmention.html
@@ -0,0 +1,20 @@
+{{ range . }}
+{{ if eq .mention_type "mention" }}
+
+{{ end }}
+{{ if eq .mention_type "like" }}
+
+{{ end }}
+{{ if eq .mention_type "reply" }}
+
+{{ end }}
+{{ if eq .mention_type "bookmark" }}
+
+{{ end }}
+{{ if eq .mention_type "repost" }}
+
+{{ end }}
+{{ if eq .mention_type "rsvp" }}
+
+{{ end }}
+{{ end }}