{% extends "base.html" %} {%- import "partials/_ui.html" as ui -%} {% block title %}{{ collection.title }} - {{ owner_username }} - Makenot.work{% endblock %} {% block body_attrs %} class="padded-page collection-page"{% endblock %} {% block head %} {% endblock %} {% block content %} {% include "partials/site_header.html" %}

{{ collection.title }}

{% if let Some(desc) = collection.description %}

{{ desc }}

{% endif %}
{{ collection.item_count }} items
{% if items.is_empty() %} {% call ui::empty_state("", "This collection is empty.") %} {% else %}
{% for item in items %}
{{ item.item_type }} · {{ item.username }} · {{ item.project_title }}
{{ item.price_display }}
{% endfor %}
{% endif %}
{% endblock %}