Files
labyricorn-site/templates/devlog.html
T
Labyricorn ec6e21bb25
Deploy production / deploy (push) Successful in 4s
Add repository-owned project publishing
2026-08-11 23:24:55 -07:00

28 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% block body %}
{% set project = this.parent %}
<section class="hero compact devlog-hero">
<div class="shell narrow">
<p class="eyebrow"><a href="{{ project|url }}">{{ project.title }}</a> · Development log</p>
<h1>{{ this.title }}</h1>
<p class="dek">{{ this.summary }}</p>
</div>
</section>
<section class="activity-section">
<div class="shell">
<div class="section-heading"><span>Development notes</span><span>{{ this.children.count() }} entries</span></div>
<div class="devlog-index">
{% for entry in this.children.order_by('-date', '-source_commit_time') %}
<article class="devlog-index-entry">
<div class="entry-meta"><span class="label">Devlog</span><time datetime="{{ entry.date }}">{{ entry.date|dateformat('YYYY.MM.dd') }}</time></div>
<h2><a href="{{ entry|url }}">{{ entry.title }}</a></h2>
<p>{{ entry.summary }}</p>
{% if entry.topic_tags %}<div class="technology-list">{% for tag in entry.topic_tags %}<span>{{ tag }}</span>{% endfor %}</div>{% endif %}
<a class="read-more" href="{{ entry|url }}">Read entry →</a>
</article>
{% endfor %}
</div>
</div>
</section>
{% endblock %}