personal-site/themes/lite/templates/creations.html

21 lines
388 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block meta %}
2023-02-21 21:21:11 +00:00
<title>Creations | t0.vc</title>
{% endblock %}
{% block content %}
2023-04-22 05:55:10 +00:00
<h1>Creations</h1>
2023-04-22 05:55:10 +00:00
<p>Sometimes I create art or interactive tech.</p>
{% for article in articles if article.category.name == 'Creations' %}
2023-04-22 05:55:10 +00:00
<p>
<a href="/{{ article.url }}">{{ article.title }}</a><br/>
{{ article.summary | striptags }}
</p>
{% endfor %}
{% endblock %}