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.
 
 
 

25 lines
606 B

{% extends "base.html" %}
{% block head %}
{{ super() }}
<meta name="description" content="Solarpunk City" />
<meta name="summary" content="Solarpunk City" />
{% endblock %}
{% block content %}
<div class="content index">
<h2>Designs</h2>
<p>
Open source solarpunk inspiried designs that you can build yourself.
</p>
{% for article in articles_page.object_list if article.category.name == 'Designs' %}
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
<div class="summary">
{{ article.summary }}
</div>
{% endfor %}
</div>
{% endblock %}