{% extends "base.html" %} {% from "_macros.html" import modal %} {% block extra_head %} {% endblock %} {% block content %} {% set project_url = "/projects/" ~ (project['slug'] or project['uid']) %} {% set cover = attachments | selectattr('uid', 'equalto', project.get('cover_attachment_uid', '')) | selectattr('is_image') | list | first %} {% set logo = attachments | selectattr('uid', 'equalto', project.get('logo_attachment_uid', '')) | selectattr('is_image') | list | first %} {% set hero_uids = [(cover or {}).get('uid'), (logo or {}).get('uid')] %} {% set gallery = attachments | selectattr('is_image') | rejectattr('uid', 'in', hero_uids) | list %} {% set other_attachments = attachments | rejectattr('is_image') | list %} {% set cover_src = (cover or {}).get('url') or ((gallery | first or {}).get('url')) %}
No devlog posts yet.{% if is_owner %} Share your first update to give this project a public build log.{% endif %}
{% endif %}Showing 12 of {{ gallery | length }} screenshots.
{% endif %}