|
|
|
@ -4,6 +4,20 @@
|
|
|
|
|
<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 %}
|
|
|
|
|