You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
585 B
HTML
24 lines
585 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
<section>
|
|
<img src="{{ "../"~page.extra.logo }}" alt="{{ page.extra.logo }}" class="logo">
|
|
<p>{{ page.description }}</p>
|
|
{% if page.extra.positive and page.extra.negative %}
|
|
<div class="stats">
|
|
<ul class="positive">
|
|
{% for item in page.extra.positive %}
|
|
<li>{{ item }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<ul class="negative">
|
|
{% for item in page.extra.negative %}
|
|
<li>{{ item }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
{{ page.content | safe }}
|
|
</section>
|
|
{% endblock %}
|