{% extends "index.html" %} {% block content %}

{{ page.title }}

{{ page.description }}

{% if page.extra.mainimage %} {{ page.extra.mainimage }} {% endif %}
{{ page.content | safe }} {% set section = get_section(path="software/_index.md") %} {% if section.pages %}

Doporučené nástroje

{% for program in section.pages %}
{{ program.title }}

{{ program.description }}

{% if program.extra.positive and program.extra.negative %}
    {% for item in program.extra.positive %}
  • {{ item }}
  • {% endfor %}
    {% for item in program.extra.negative %}
  • {{ item }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}