{% extends "base.html" %} {% from "macros/tag-links.html" import tag_links, taxonomy_labels with context %} {% from "macros/social-sharing.html" import social_metadata, share_controls with context %} {% from "macros/feed-links.html" import feed_autodiscovery, visible_feed_links with context %} {% block social_head %}{{ social_metadata(this, 'SoftwareSourceCode', 'website') }}{% endblock %} {% block feed_head %} {% set project_feed_base = 'https://www.labyricorn.com' ~ this.url_path %} {{ feed_autodiscovery(project_feed_base ~ 'feed.xml', project_feed_base ~ 'rss.xml', 'Labyricorn - ' ~ this.title) }} {% endblock %} {% block body %} {% set devlog = site.get(this.path ~ '/devlog') %} {% set project_feed_base = 'https://www.labyricorn.com' ~ this.url_path %}
{% if this.logo %}{% endif %}

Project exhibition · {{ this.status }}

{{ this.title }}

{{ this.summary }}

Source repository → README → {% if devlog %}Development log →{% endif %} {{ visible_feed_links(project_feed_base ~ 'feed.xml', project_feed_base ~ 'rss.xml') }}
{{ this.body }}
{{ share_controls(this, 'project') }}
{% if this.technology_labels %}
Built with{{ this.technology_labels|length }} technologies
{{ taxonomy_labels(this.technology_labels) }}
{% endif %} {% if devlog %}
Latest development notesView complete devlog →
{% for entry in devlog.children.order_by('-date', '-source_commit_time').limit(3) %} {% endfor %}
{% endif %}
{% endblock %}