2022-06-23 05:58:54 +00:00
|
|
|
{% set meta={"title": "Blog™", "desc": "Blog™"} %}
|
|
|
|
{% extends "/_base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<p>Welcome to Blog™. I may on occasion add pages to here, in which case the list below will update. You can also
|
|
|
|
get updates delivered directly to you using the <a href="/blog/rss.xml">RSS</a> or <a href="/blog/atom.xml">Atom</a> feeds.</p>
|
|
|
|
{% for post in data.blogposts %}
|
2023-02-28 04:33:56 +00:00
|
|
|
<hr style="width: 20%">
|
2022-06-23 05:58:54 +00:00
|
|
|
<h2 style="margin-top: 10px; margin-bottom: 10px">
|
2024-05-12 23:21:34 +00:00
|
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
2022-06-23 05:58:54 +00:00
|
|
|
</h2>
|
|
|
|
<p class="faded">{{ post.date.isoformat() }}</p>
|
|
|
|
<p>{{ post.desc }}</p>
|
|
|
|
{% endfor %}
|
2023-02-28 04:33:56 +00:00
|
|
|
{% endblock %}
|