You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
388 B

{% extends "base.html" %}
{% block meta %}
<title>Creations | t0.vc</title>
{% endblock %}
{% block content %}
<h1>Creations</h1>
<p>Sometimes I create art or interactive tech.</p>
{% for article in articles if article.category.name == 'Creations' %}
<p>
<a href="/{{ article.url }}">{{ article.title }}</a><br/>
{{ article.summary | striptags }}
</p>
{% endfor %}
{% endblock %}