29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% from "macros/tag-links.html" import taxonomy_labels with context %}
|
|
{% 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_labels %}<div class="technology-list">{{ taxonomy_labels(entry.topic_labels) }}</div>{% endif %}
|
|
<a class="read-more" href="{{ entry|url }}">Read entry →</a>
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|