diff --git a/themes/gohugoioTheme/layouts/_default/single.html b/themes/gohugoioTheme/layouts/_default/single.html
index 39fb77c75..8cd289624 100755
--- a/themes/gohugoioTheme/layouts/_default/single.html
+++ b/themes/gohugoioTheme/layouts/_default/single.html
@@ -11,6 +11,7 @@
{{ .Render "page" }}
+ {{ partial "related.html" . }}
diff --git a/themes/gohugoioTheme/layouts/partials/related.html b/themes/gohugoioTheme/layouts/partials/related.html
new file mode 100644
index 000000000..fb11699af
--- /dev/null
+++ b/themes/gohugoioTheme/layouts/partials/related.html
@@ -0,0 +1,9 @@
+{{ $related := .Site.RegularPages.Related . | first 5 }}
+{{ with $related }}
+
See Also
+
+{{ end }}
\ No newline at end of file