{% extends "base.html" %} {%- import "partials/_ui.html" as ui -%} {% block title %}Feed - Makenotwork{% endblock %} {% block body_attrs %} class="padded-page feed-page"{% endblock %} {% block content %} {% include "partials/site_header.html" %}

Your Feed

{% if items.is_empty() %} {% call ui::empty_state_with_action("Nothing here yet", "Follow users, projects, or tags to see their items here.", "/discover", "Browse Discover") %} {% else %}
Showing {{ showing_start }}-{{ showing_end }} of {{ total_items }} items
Type Name Tag Price Date
{% for item in items %} {{ item.item_type }}
{{ item.name }} {{ item.creator }}
{{ item.primary_tag }} {% if item.is_free %}Free{% else %}{{ item.price }}{% endif %} {{ item.date }}
{% endfor %}
{% if total_pages > 1 %} {% endif %} {% endif %}
{% endblock %}