templates/career/_fragment-list.html.twig line 1

  1. 
    
    <section>
        <div class="container">
            {% if positions|length < 1 %}
            <h2>{% trans %}Aktuálně nejsou otevřené žádné pozice{% endtrans %}</h2>
            {% else %}
                <h2>{% trans %}Aktuálně hledáme{% endtrans %}</h2>
                <div class="jobs mt-4">
                    {% for position in positions %}
                        {% set place = get_parameters_by_group_name(position, 'Místo pracoviště') %}
                        {% if place and place|length > 0 %}
                            {% set place = place[0].data %}
                        {% else %}
                            {% set place = "Neznámé" %}
                        {% endif %}
                        <a href="/{{ position.slug }}" class="job-row">
                            <strong class="job-row__position">{{ position.name }}</strong>
                            <div class="job-row__place">{{ place }}</div>
                        </a>
                    {% endfor %}
                </div>
            {% endif %}
        </div>
    </section>