{% extends "base.html" %} {% block title %}{{ item.title }} - Library - Makenotwork{% endblock %} {% block head %} {% endblock %} {% block content %} {% include "partials/site_header.html" %}

← Store page · Your library

{{ creator_avatar_initials }}
{{ item.release_date }}{% match item.content %}{% when crate::types::ItemContent::Video with { duration, .. } %}{% if let Some(dur) = duration %} | {{ dur }}{% endif %}{% when _ %}{% endmatch %}

{{ item.title }}

{% if let Some(project_title) = project_title %}

{{ project_title }}

{% endif %}
0:00 0:00
Speed:
{% if !chapters.is_empty() %}

Chapters

{% endif %} {% if !item.description.is_empty() %}

{{ item.description }}

{% endif %} {% if !versions.is_empty() %}

Source files

{% 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 %}
{% endif %}
{% include "partials/discussion_section.html" %} {% endblock %} {% block scripts %} {% endblock %}