Add page full of text files

This commit is contained in:
2021-10-14 06:41:18 +00:00
parent 7c059148d5
commit 3059c14648
6 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{% extends "base.html" %}
{% block meta %}
{% endblock %}
{% block style %}
{% endblock %}
{% block content %}
<h1>Text Files</h1>
Here are some various text notes that I share with the public.
<hr />
{% for f in list_text_files() %}
<a href="../text/{{ f }}">{{ f }}</a>
{% endfor %}
{% endblock %}