My-Website/app/templates/writing.html
2024-04-23 11:11:54 -05:00

11 lines
242 B
HTML

<!DOCTYPE html>
<html lang="en">
<body>
<a href="/">home</a>
<br>
<br>
{% for work in works %}
<a href="/{{ work.path }}">{{ work.name }}</a> {{ work.date }}
{% endfor %}
</body>
</html>