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,28 @@
{% extends "/html/base.html" %}
{% block content %}
<div id="post">
{% for post in posts %}
<div class="post-header">
<a href="{{post.uri}}"><h2>{{post.title}}</h2></a>
<div id="post-meta">
{% if post.author %}
<div class="author">{{post.author}}</div>
{% endif %}
<div class="date">{{post.date|date:longDate}}</div>
</div>
</div>
{{post.content|safe}}
<a href="{{post.uri}}">Continue reading &#8594;</a>
<hr>
{% endfor %}
<div id="prev-next">
{% if prev-uri %}
<a class="left" href="{{prev-uri}}">&laquo; Prev</a>
{% endif %}
{% if next-uri %}
<a class="right" href="{{next-uri}}">Next &raquo;</a>
{% endif %}
</div>
</div>
{% endblock %}