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

26 lines
457 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 style %}
{% endblock %}
{% block content %}
2022-05-19 22:32:58 +00:00
<pre style=font:unset>
2023-02-21 21:21:11 +00:00
<a href="/">Home | t0.vc</a>
Creations
=========
Sometimes I create art or interactive tech.
{% for article in articles if article.category.name == 'Creations' %}
<a href="/{{ article.url }}">{{ article.title }}</a>
{{ article.summary | striptags }}
{% endfor %}
{% endblock %}