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.
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
{% extends "index.html" %}
|
|
{% import "macros.html" as macros %}
|
|
|
|
{% block content %}
|
|
<section class="meta">
|
|
<div>
|
|
<h2>{{ page.title }}</h2>
|
|
<p>{{ page.description | safe }}</p>
|
|
</div>
|
|
{% if page.extra.mainimage %}
|
|
<img src="{{ resize_image(path=page.extra.mainimage, width=500, height=500, op="fill") }}" alt="{{ page.extra.mainimage }}">
|
|
{% endif %}
|
|
</section>
|
|
{{ page.content | safe }}
|
|
|
|
{% if page.extra.softwarelist %}
|
|
{% set section = get_section(path="software/_index.md") %}
|
|
{% if section.pages %}
|
|
<h3>Doporučené nástroje</h3>
|
|
<section class="software">
|
|
{% 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 %}
|
|
</section>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endblock %}
|