Initial commit.

This commit is contained in:
Simon Brooke 2026-08-26 17:50:14 +01:00
commit b2e2fde818
36 changed files with 1475 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{% extends "/html/base.html" %}
{% block content %}
<div id="post">
{% include "/html/post-content.html" %}
{% if disqus? %}
<div id="comments">
<a href="{{post.uri}}#disqus_thread">View Comments</a>
</div>
{% endif %}
<div id="prev-next">
{% if post.prev %}
<a href="{{post.prev.uri}}">&laquo; {{post.prev.title}}</a>
{% endif %}
{% if post.next %}
<a class="right" href="{{post.next.uri}}">{{post.next.title}} &raquo;</a>
{% endif %}
</div>
</div>
{% endblock %}