personal-site/themes/lite/templates/writing.html

27 lines
559 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block meta %}
2023-02-21 21:21:11 +00:00
<title>Writing | t0.vc</title>
{% endblock %}
{% block content %}
2023-04-22 05:55:10 +00:00
<h1>Writing</h1>
2023-04-22 05:55:10 +00:00
<p>Various articles, mostly about computers.</p>
{% for article in articles if article.category.name == 'Writing' %}
2023-04-22 05:55:10 +00:00
<p>
<a href="/{{ article.url }}">{{ article.title }}</a><br/>
{{ article.summary | striptags }}
</p>
{% endfor %}
2023-04-22 05:55:10 +00:00
<h2>Text Files</h2>
2023-04-22 05:55:10 +00:00
<p>Here are some random text notes that I share with the public.</p>
{% for f in list_text_files() %}
2023-04-22 05:55:10 +00:00
<a href="../text/{{ f }}">{{ f }}</a><br/>
{% endfor %}
{% endblock %}