30 lines
555 B
HTML
30 lines
555 B
HTML
{% extends "base.html" %}
|
|
{% block meta %}
|
|
{% endblock %}
|
|
|
|
{% block style %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<pre style=font:unset>
|
|
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 %}
|