27 lines
559 B
HTML
27 lines
559 B
HTML
{% 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 %}
|