{% extends "base.html" %} {% block title %}{{ user.display_name_or_username() }} - Makenotwork{% endblock %} {% block body_attrs %} class="padded-page user-page"{% endblock %} {% block head %} {% if user.avatar_url.is_some() %}{% else %}{% endif %} {% if let Some(img) = user.avatar_url %} {% else %} {% endif %} {% endblock %} {% block content %} {% include "partials/site_header.html" %}
{% if creator_paused %}
This creator is currently on break. Existing purchases remain accessible.
{% endif %}
{{ user.avatar_initials }}

{{ user.display_name_or_username() }}

{{ user.username }}
{% if let Some(bio) = user.bio %}

{{ bio }}

{% endif %} {% if is_own_profile %} {% endif %} {% if session_user.is_some() && !is_own_profile %}
{% if is_following %} {% else %} {% endif %}
{% else if follower_count > 0 %}
{{ follower_count }} followers
{% endif %} {% include "partials/tip_button.html" %}
{% if !custom_links.is_empty() %} {% endif %} {% if !projects.is_empty() %}

Projects

{% for project in projects %}
{{ project.title }}
{{ project.project_type }} · {{ project.item_count }} items
{% endfor %}
{% endif %} {% if !public_collections.is_empty() %}

Collections

{% for coll in public_collections %}
{{ coll.title }}
{{ coll.item_count }} items
{% endfor %}
{% endif %}
{% endblock %}