Add subpages, and wine crate coffee table

This commit is contained in:
2022-02-14 23:01:50 +00:00
parent 25a2de77a1
commit 42cbd0e54a
17 changed files with 180 additions and 73 deletions

View File

@@ -0,0 +1,28 @@
{% extends "base.html" %}
{% block meta %}
{% endblock %}
{% block style %}
{% endblock %}
{% block content %}
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 %}