You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
559 B

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