templates/page/office/show/components/budapest/budapest_positions.html.twig line 1

Open in your IDE?
  1. {% import 'common/macros/svg.html.twig' as svg %}
  2. {% macro image(code, class = '') %}
  3.     <img
  4.         src="/img/{{ code }}.png"
  5.         alt="{{ code }}"
  6.         {{ class == '' ? '' : 'class=' ~ class }}
  7.         data-code="{{ code }}"
  8.     />
  9. {% endmacro %}
  10. {% macro button(code, icon, class = '') %}
  11.     <button
  12.         {{ class == '' ? '' : 'class=' ~ class }}
  13.         data-code="{{ code }}"
  14.     >
  15.         <span class="icon">{{ icon }}</span>
  16.         <span class="text">{{ ('our_locations.budapest.' ~ code)|trans }}</span>
  17.     </button>
  18. {% endmacro %}
  19. {% import _self as _ %}
  20. <div class="budapest budapest-positions" style="display:none" data-tab="positions">
  21.     <div class="jobs">
  22.         <div class="header">
  23.             <h2 class="title">{{ 'our_locations.budapest.positions_header_title'|trans }}</h2>
  24.             <p class="text">{{ 'our_locations.budapest.positions_header_text'|trans }}</p>
  25.         </div>
  26.         <div class="list">
  27.             {%
  28.                 include 'common/components/jobs.html.twig'
  29.                 with { items: items, fullPage: true, hideEmptyMessage: true } only
  30.             %}
  31.         </div>
  32.     </div>
  33.     <div class="positions">
  34.         <div class="title">
  35.             <h4>Nyitott pozícióink</h4>
  36.             <h2>Használt technológiáink</h2>
  37.         </div>
  38.         <div class="lead">
  39.             <p>{{ 'our_locations.budapest.positions_tech_p1'|trans|raw }}</p>
  40.             <p>{{ 'our_locations.budapest.positions_tech_p2'|trans|raw }}</p>
  41.             <p>{{ 'our_locations.budapest.positions_tech_p3'|trans|raw }}</p>
  42.         </div>
  43.         <div class="list">
  44.             <div class="items">
  45.                 {{ _.button('infrastructure', svg.frontend, 'active') }}
  46.                 {{ _.button('delivering_quality', svg.test) }}
  47.                 {{ _.button('languages', svg.backend) }}
  48.                 {{ _.button('frameworks', svg.frameworks) }}
  49.                 {{ _.button('monitoring', svg.database) }}
  50.                 {{ _.button('data_analytics', svg.data) }}
  51.                 {{ _.button('dev_tools', svg.cloud_base) }}
  52.             </div>
  53.             <div class="mobile-title">
  54.                 <h4>{{ 'our_locations.budapest.infrastructure'|trans }}</h4>
  55.             </div>
  56.             <div class="image">
  57.                 {{ _.image('infrastructure', 'active') }}
  58.                 {{ _.image('delivering_quality') }}
  59.                 {{ _.image('languages') }}
  60.                 {{ _.image('frameworks') }}
  61.                 {{ _.image('monitoring') }}
  62.                 {{ _.image('data_analytics') }}
  63.                 {{ _.image('dev_tools') }}
  64.             </div>
  65.         </div>
  66.     </div>
  67. </div>