diff --git a/layouts/partials/related.html b/layouts/partials/related.html
index 1ca1c4d..9465ba4 100644
--- a/layouts/partials/related.html
+++ b/layouts/partials/related.html
@@ -1,11 +1,17 @@
+{{ $opts := dict
+ "document" .
+ "indices" (slice "tags")
+}}
{{ $related := .Site.RegularPages.Related . | first 5 }} {{ with $related }}
Related Posts
{{ range . }}
- -
- {{ .Title }} // {{ .Date | time.Format "2006" }}, {{ .Date | time.Format "January 2" }}
- {{ .Summary }}
-
+ {{ if and (eq .Section "posts") .IsPage }}
+ -
+ {{ .Title }} // {{ .Date | time.Format "2006" }}, {{ .Date | time.Format "January 2" }}
+ {{ .Summary | emojify }}
+
+ {{ end }}
{{ end }}
{{ end }}