42 lines
1.0 KiB
HTML
42 lines
1.0 KiB
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">
|
|
<a href="/about">About</a> | <a href="/what-is-solarpunk">What is Solarpunk?</a>
|
|
|
|
<h2>Designs</h2>
|
|
|
|
<p>
|
|
Open source solarpunk inspired 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 %}
|
|
|
|
<h2>Notes</h2>
|
|
|
|
<p>
|
|
Various notes related to solarpunk theory and designs.
|
|
</p>
|
|
|
|
{% for article in articles_page.object_list if article.category.name == 'Notes' %}
|
|
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
|
|
<div class="summary">
|
|
{{ article.summary }}
|
|
</div>
|
|
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|