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.
41 lines
993 B
HTML
41 lines
993 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
<section class="meta">
|
|
<div>
|
|
<h2>{{ page.title }}</h2>
|
|
<p>{{ page.description }}</p>
|
|
</div>
|
|
{% if page.extra.mainimage %}
|
|
<img src="{{ page.permalink }}{{ page.extra.mainimage }}" alt="Main image">
|
|
{% endif %}
|
|
</section>
|
|
{{ page.content | safe }}
|
|
|
|
{% set section = get_section(path="software/_index.md") %}
|
|
{% if section.pages %}
|
|
<section class="software">
|
|
{% for program in section.pages %}
|
|
<div class="program">
|
|
<img src="/software/{{ program.extra.logo }}" alt="{{ program.title }}">
|
|
<p>{{ program.description }}</p>
|
|
{% if program.extra.positive and program.extra.negative %}
|
|
<div>
|
|
<ul>
|
|
{% for item in program.extra.positive %}
|
|
<li>{{ item }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<ul>
|
|
{% for item in program.extra.negative %}
|
|
<li>{{ item }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</section>
|
|
{% endif %}
|
|
{% endblock %}
|