22 lines
371 B
HTML
22 lines
371 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block meta %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block style %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
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 %}
|
||
|
|