{% extends 'includes/base.html' %} {% block content %}

artworks

{% if feed['artwork'] %} {%- for _artwork in feed['artwork'] | batch(4) %} {%- for artwork in _artwork %} {%- endfor %} {%- endfor %}

...view all

{% else %}

There's nothing here yet...

{% endif %}

artists

{% if feed['users'] %} {% for user in feed['users'] %}

{{ user.handle }}

{% endfor %} {% else %}

There's nothing here yet...

{% endif %}
{% if current_user.is_authenticated %}

logged in: {{ current_user.handle }}

{% endif %} {% endblock %}