2022-02-14 23:01:50 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block meta %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block style %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-05-19 22:32:58 +00:00
|
|
|
<pre style=font:unset>
|
2022-02-14 23:01:50 +00:00
|
|
|
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 %}
|
|
|
|
|