{% extends "base.html" %} {% block title %}{{ item.title }} - Library - Makenotwork{% endblock %} {% block body_attrs %} class="padded-page library-page"{% endblock %} {% block head %} {% endblock %} {% block content %} {% include "partials/site_header.html" %}

← Store page · Your library

{# A creator may save an empty cover_image_url (Some("")). Treat that like None so we don't reserve a 200px column with broken-image alt text. The cover wrapper is omitted entirely; CSS .no-cover collapses the grid to a single column. #}
{% if let Some(img) = item.cover_image_url %}{% if !img.is_empty() %}
{{ item.title }}
{% endif %}{% endif %}
{% if !versions.is_empty() %}

Downloads

{% for version in versions %} {% if version.has_file %}
v{{ version.number }} {% if let Some(label) = version.label %} {{ label }} {% else %} {% match version.file_name %}{% when Some with (name) %}{{ name }}{% when None %}Download{% endmatch %} {% endif %} {{ version.size }}
{% endif %} {% endfor %}
Software downloads are provided by third-party creators. Every file is run through our six-layer scanning pipeline (content-type, structural, archive, YARA, ClamAV, MalwareBazaar) before it's released, but scanning can't prove a file is safe — use antivirus software and download at your own risk. Report concerns to reports@makenot.work.
{% endif %} {% if !bundle_items.is_empty() %}

Included in this bundle ({{ bundle_items.len() }})

{% for child in bundle_items %}
{{ child.item_type }} {{ child.title }}
{% endfor %}
{% endif %} {% if !item.description.is_empty() %}
Description

{{ item.description }}

{% endif %} {% if !sections.is_empty() %}
{% for section in sections %} {% endfor %}
{% for section in sections %}
{{ section.body_html|safe }}
{% endfor %}
{% endif %} {% if item.license_preset.is_some() %}

License

{% if item.license_preset.as_deref() == Some("personal_use") %}Personal Use Only {% else if item.license_preset.as_deref() == Some("royalty_free") %}Royalty-Free Commercial {% else if item.license_preset.as_deref() == Some("mit") %}MIT License {% else if item.license_preset.as_deref() == Some("apache2") %}Apache License 2.0 {% else if item.license_preset.as_deref() == Some("cc_by_4") %}CC BY 4.0 {% else if item.license_preset.as_deref() == Some("cc_by_nc_4") %}CC BY-NC 4.0 {% else if item.license_preset.as_deref() == Some("cc0") %}Public Domain (CC0) {% else if item.license_preset.as_deref() == Some("custom") %}Custom License {% else %}License {% endif %}

Download LICENSE.txt

{% endif %} {% include "partials/discussion_section.html" %}
{% endblock %} {% block scripts %} {% endblock %}