2022-02-14 23:01:50 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block meta %}
|
2023-02-21 21:21:11 +00:00
|
|
|
<title>Writing | t0.vc</title>
|
2022-02-14 23:01:50 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2023-04-22 05:55:10 +00:00
|
|
|
<h1>Writing</h1>
|
2022-02-14 23:01:50 +00:00
|
|
|
|
2023-04-22 05:55:10 +00:00
|
|
|
<p>Various articles, mostly about computers.</p>
|
2022-02-14 23:01:50 +00:00
|
|
|
|
|
|
|
{% for article in articles if article.category.name == 'Writing' %}
|
2023-04-22 05:55:10 +00:00
|
|
|
<p>
|
|
|
|
<a href="/{{ article.url }}">{{ article.title }}</a><br/>
|
|
|
|
{{ article.summary | striptags }}
|
|
|
|
</p>
|
2022-02-14 23:01:50 +00:00
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
2023-04-22 05:55:10 +00:00
|
|
|
<h2>Text Files</h2>
|
2022-02-14 23:01:50 +00:00
|
|
|
|
2023-04-22 05:55:10 +00:00
|
|
|
<p>Here are some random text notes that I share with the public.</p>
|
2022-02-14 23:01:50 +00:00
|
|
|
|
|
|
|
{% for f in list_text_files() %}
|
2023-04-22 05:55:10 +00:00
|
|
|
<a href="../text/{{ f }}">{{ f }}</a><br/>
|
2022-02-14 23:01:50 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|