{% if 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.positive_short and program.extra.negative_short %}
{{ macros::print_tool(program=program) }}
{% endif %}
{% endif %}
{% endfor %}
{% for program in section.pages %}
{% if program.taxonomies.categories and program.taxonomies.categories is containing(page.slug) %}
{% if not program.extra.positive_short or not program.extra.negative_short %}
{{ macros::print_tool(program=program) }}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}