diff --git a/source/_layouts/note.html.twig b/source/_layouts/note.html.twig
index 68f99d5..dfac32b 100644
--- a/source/_layouts/note.html.twig
+++ b/source/_layouts/note.html.twig
@@ -32,4 +32,18 @@
{% endfor %}
{% endif %}
+
+ {% if page.related and data.notes %}
+
+ Related
+
+
+ {% for note in data.notes if page.related|filter((title) => title == note.title) %}
+ -
+ {{ note.title }}
+
+ {% endfor %}
+
+
+ {% endif %}
{% endblock %}