templates/page/career/index/index.html.twig line 1

Open in your IDE?
  1. {% extends 'layout/base.html.twig' %}
  2. {% set og_image = absolute_url('/img/banners/career-facebook-image.png') %}
  3. {% set og_image_size = (public_dir ~ '/img/banners/career-facebook-image.png') | imagesize %}
  4. {% set og_description = 'careers.banner_bottom' | trans %}
  5. {% block title %}Career – {{ parent() }}{% endblock %}
  6. {% block seo_en %}{{ url('career_index') }}{% endblock %}
  7. {% block seo_hu %}{{ url('career_index', {'lang': 'hu'}) }}{% endblock %}
  8. {% block seo_x %}{{ url('career_index') }}{% endblock %}
  9. {% block body_classes %}career-index{% endblock %}
  10. {% block content %}
  11.     {% include 'page/career/index/components/banner.html.twig' %}
  12.     <section class="career-page" id="career">
  13.         {% include 'page/career/index/components/filters.html.twig' with { codes: filters } only %}
  14.         {% include 'page/career/index/components/page_text.html.twig' %}
  15.         <p class="text empty-filter-result">{{ 'careers.no_jobs_text'|trans }}</p>
  16.         {% include 'common/components/jobs.html.twig' with { items: jobs, fullPage: true} only %}
  17.     </section>
  18.     {% include 'common/components/contact_form.html.twig' with { defaultInquiry: true } only %}
  19. {% endblock %}