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

33 lines
616 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 style %}
{% endblock %}
{% block content %}
2022-05-19 22:32:58 +00:00
<pre style=font:unset>
2023-02-21 21:21:11 +00:00
<a href="/">Home | t0.vc</a>
Writing
=======
Various articles, mostly about computers.
{% for article in articles if article.category.name == 'Writing' %}
<a href="/{{ article.url }}">{{ article.title }}</a>
{{ article.summary | striptags }}
{% endfor %}
Text Files
----------
Here are some random text notes that I share with the public.
{% for f in list_text_files() %}
<a href="../text/{{ f }}">{{ f }}</a>
{% endfor %}
{% endblock %}