An ATProtocol powered blogging engine.
1{% extends "base.html" %}
2{% block title %}{{ post.title }} - Blahg{% endblock %}
3{% block head %}
4<meta name="robots" content="noindex">
5{% endblock %}
6{% block content %}
7<main>
8 <section>
9 <hgroup>
10 <h1>
11 <a href="/posts/{{ post.slug }}">Back to Post</a>
12 </h1>
13 </section>
14</main>
15<main>
16 <section>
17 {% if post_references %}
18 <ul>
19 {% for post_reference in post_references %}
20 <li>
21 <a href="web+{{ post_reference.aturi }}">{{ post_reference.aturi }}</a>
22 </li>
23 {% endfor %}
24 </ul>
25 {% else %}
26 <p><strong><em>There are no references in this collection to display.</em></strong></p>
27 {% endif %}
28
29 </section>
30</main>
31{% endblock %}