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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
{% extends "index.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<section>
|
|
|
|
{% if page.extra.logo %}
|
|
|
|
{% if page.extra.linkto %}
|
|
|
|
<a href="{{ page.extra.linkto }}">
|
|
|
|
{% endif %}
|
|
|
|
<img src="{{ "../"~page.extra.logo }}" alt="{{ page.extra.logo }}" class="logo">
|
|
|
|
{% if page.extra.linkto %}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
<h2>{{ page.title }}</h2>
|
|
|
|
{% endif %}
|
|
|
|
<p>{{ page.description | safe }}</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 %}
|