solarpunkcity/themes/theme/templates/index.html

40 lines
938 B
HTML
Raw Normal View History

{% 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>
2023-03-19 00:42:57 +00:00
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 %}
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 %}
</div>
{% endblock %}