diff options
Diffstat (limited to 'templates/activities/notifications.html')
-rw-r--r-- | templates/activities/notifications.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/activities/notifications.html b/templates/activities/notifications.html new file mode 100644 index 0000000..c071a49 --- /dev/null +++ b/templates/activities/notifications.html @@ -0,0 +1,22 @@ +{% extends "base.html" %} + +{% block title %}Notifications{% endblock %} + +{% block content %} + {% include "activities/_home_menu.html" %} + + <section class="columns"> + <div class="left-column"> + {% for event in events %} + {% include "activities/_event.html" %} + {% empty %} + No events yet. + {% endfor %} + </div> + + <div class="right-column"> + <h2>?</h2> + </div> + + </section> +{% endblock %} |