Initial site of temporary Solarpunk City website
This commit is contained in:
25
themes/theme/templates/index.html
Normal file
25
themes/theme/templates/index.html
Normal file
@@ -0,0 +1,25 @@
|
||||
{% 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 %}
|
Reference in New Issue
Block a user