2022-02-14 23:01:50 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block meta %}
|
2023-02-21 21:21:11 +00:00
|
|
|
<title>Creations | t0.vc</title>
|
2022-02-14 23:01:50 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2023-04-22 05:55:10 +00:00
|
|
|
<h1>Creations</h1>
|
2022-02-14 23:01:50 +00:00
|
|
|
|
2023-04-22 05:55:10 +00:00
|
|
|
<p>Sometimes I create art or interactive tech.</p>
|
2022-02-14 23:01:50 +00:00
|
|
|
|
|
|
|
{% 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>
|
2022-02-14 23:01:50 +00:00
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|