{{ page.richtextpage.content|richtext_filters|safe }}
{% endeditable %}
-{% block related_events %}
-<hr style="margin-top: 3rem;">
+{% block related_objects %}
+
{% if page.featured.all %}
+<hr style="margin-top: 3rem;">
+
+{% if page.featured.all.0.events.all %}
<h2 class="section__title">{% trans "Related events" %}</h2> <br>
<div class="msry__container">
<div class="msry__sizer"></div>
{% endfor %}
</div>
{% endif %}
-{% endblock %}
+{% if page.featured.all.0.blogposts.all %}
+<h2 class="section__title">{% trans "Related posts" %}</h2> <br>
+<div class="msry__container">
+ <div class="msry__sizer"></div>
+ {% for post in page.featured.all.0.blogposts.all %}
+ {% include 'blog/includes/post_card.html' %}
+ {% endfor %}
+</div>
+{% endif %}
+{% endif %}
+{% endblock %}
{% endblock %}