{% extends "base.html" %} {%- import "partials/carousel.html" as carousel -%} {% block title %}{{ project.title }} - {{ creator_username }}{% endblock %} {% block body_attrs %} class="padded-page project-page"{% endblock %} {% block head %} {% if project.cover_image_url.is_some() %}{% else %}{% endif %} {% if let Some(img) = project.cover_image_url %} {% else %} {% endif %} {% endblock %} {% block content %} {% include "partials/site_header.html" %}
{% if let Some(img_url) = project.cover_image_url %} {{ project.title }} {% endif %}

{{ project.title }}.

by {{ creator_username }} · {{ project.item_count }} items

{{ project.description }}

{% if is_owner %} Edit Project {% endif %} {% if session_user.is_some() %} {% if is_following %} {% else %} {% endif %} {% else if follower_count > 0 %} {{ follower_count }} followers {% endif %} RSS Feed {% if has_blog_posts %} Blog {% endif %} {% for repo in &git_repos %} Git ({{ repo.0 }}) {% endfor %} {% if let Some(url) = community_url %} Community {% endif %} {% include "partials/tip_button.html" %}
{% if !gallery.is_empty() %} {% endif %} {% if !sections.is_empty() %}
{% for section in sections %} {% endfor %}
{% for section in sections %}
{{ section.body_html|safe }}
{% endfor %}
{% endif %}

Available Items

{% for item in items %}
{{ item.thumbnail }}

{{ item.title }}

{{ item.item_type }}{% if item.bundle_item_count > 0 %} ({{ item.bundle_item_count }} items){% endif %} · {{ item.release_date }}
{% for tag in item.tags %} {{ tag.name }} {% endfor %}

{{ item.description }}

{% if item.can_access %} View in library {% else if item.is_free %} {% else if item.pwyw_enabled %} Pay What You Want {% else %} Buy Once {% endif %}
{% endfor %}
{% if !subscription_tiers.is_empty() %}

Membership

{% for tier in subscription_tiers %}
{{ tier.name }}
{{ tier.price }}
{% if !tier.description.is_empty() %}

{{ tier.description }}

{% endif %} {% if has_subscription %}
Subscribed
{% else if session_user.is_some() %}
Have a promo code?
{% else %} Log in to Subscribe {% endif %}
{% endfor %}
{% endif %}
{% if session_user.is_some() %} {% let report_target_type = "project" %} {% let report_target_id = project_id %} {% let report_has_labels = true %} {% include "partials/report_modal.html" %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}