{% extends "base.html" %}
{% block meta %}
<title>Creations | t0.vc</title>
{% endblock %}

{% block style %}
{% endblock %}

{% block content %}
<pre style=font:unset>
<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 %}