{% for notif, count, timestamp in notifications.items %}
{% if not notif.molt.nsfw or current_user.show_nsfw %}
{% include "notif.html" %}
{% else %}
Notification filtered due to your NSFW preferences
{% endif %}
{% else %}
Notifications will appear here. Get out there and make a splash!
{% endfor %}
{% if notifications.has_next or notifications.has_prev %}
{% endif %}
{# MARK ALL NOTIFICATIONS AS READ #}
{% if current_user.read_notifications() %}
{% endif %}