2023-03-06 18:14:55 +00:00
|
|
|
{% 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">
|
2023-04-05 17:02:27 +00:00
|
|
|
<a href="/about">About</a> | <a href="/what-is-solarpunk">What is Solarpunk?</a> | <a href="https://github.com/SolarpunkCity">Github</a>
|
2023-03-26 02:58:20 +00:00
|
|
|
|
2023-03-06 18:14:55 +00:00
|
|
|
<h2>Designs</h2>
|
|
|
|
|
|
|
|
<p>
|
2023-03-19 00:42:57 +00:00
|
|
|
Open source solarpunk inspired designs that you can build yourself.
|
2023-03-06 18:14:55 +00:00
|
|
|
</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 %}
|
2023-03-12 05:27:50 +00:00
|
|
|
|
|
|
|
<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 %}
|
2023-03-06 18:14:55 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|