This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user