diff --git a/_layouts/post.html b/_layouts/post.html
index 3a2c686..2f92e72 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -36,6 +36,24 @@
{{ content | hyphenate }}
+
+ {% assign items = ''|split:'' %}
+ {% assign filename = page.url | remove: '/blog/' | replace: '/', '-' | remove: '.html' %}
+ {% for p in site.posts %}
+ {% if p.content contains filename %}
+ {% assign items = items | push:p %}
+ {% endif %}
+ {% endfor %}
+ {% assign size=items | size %}
+ {% if size > 0 %}
+ {{ site.mentioned_in }}
+
+ {% endif %}
+
{% if false != page.comments %}
{% include disqus.html %}
{% endif %}