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

{{ page.title }}

{{ page.description | safe }}

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

Doporučené nástroje

{% for program in section.pages %} {% if program.taxonomies.categories and program.taxonomies.categories is containing(page.slug) %}
{% if program.extra.linkto and program.extra.directlink %} {% else %} {% endif %}

{{ program.title }}

{% if program.extra.logo %} {{ program.title }} {% endif %}

{{ program.description }}

{% if program.extra.positive_short and program.extra.negative_short %}
    {% for item in program.extra.positive_short %}
  • {{ item }}
  • {% endfor %}
    {% for item in program.extra.negative_short %}
  • {{ item }}
  • {% endfor %}
{% endif %}
{% endif %} {% endfor %}
{% endif %} {% endif %} {% endblock %}