26 lines
606 B
HTML
26 lines
606 B
HTML
{% 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 %}
|