templates/bundles/BoldrJobsBundle/job-offer.html.twig line 1

Open in your IDE?
  1. {% extends '@!BoldrJobs/job-offer.html.twig' %}
  2. {% block body %}
  3.     <div class="boldr-section hb-header hb-header-small">
  4.         <img class="hb-header-background" src="{{ boldr_cms_get_attachment_url(boldr_site_options_get('default_header_image'), 'hb_header_small') }}" />
  5.     </div>
  6.     <div class="boldr-section boldr-content boldr-content-alignment-full" style="margin-top: -173.5px;">
  7.         <div class="boldr-content-wrapper">
  8.             <div class="boldr-section-heading">
  9.                 <a class="hb-return-link" href="{{ boldr_cms_get_permalink(boldr_site_options_get('job_offers_page')) }}">
  10.                     <i class="icon-arrow-left"></i>
  11.                     Terug naar het overzicht
  12.                 </a>
  13.                 {% include '@BoldrCms/section-templates/heading.html.twig' with {
  14.                     heading: jobOffer.title,
  15.                     subheading: '',
  16.                     style: 'default'
  17.                 } %}
  18.                 <span>
  19.                     <i class="icon-time"></i>
  20.                     {{ jobOffer.minHours ~ (jobOffer.minHours != jobOffer.maxHours ? '-' ~ jobOffer.maxHours) }} uur
  21.                 </span>
  22.             </div>
  23.         </div>
  24.     </div>
  25.     <div class="boldr-job-offer">
  26.         {{ block('description') }}
  27.         {{ block('requirements') }}
  28.         <a href="mailto:{{ boldr_site_options_get('job_application_email') }}" class="boldr-jobs-apply boldr-button boldr-button-filled boldr-button-medium">
  29.             Solliciteer direct
  30.         </a>
  31.     </div>
  32. {% endblock %}
  33. {% block head %}
  34.     <link rel="stylesheet" href="{{ asset('/bundles/boldrjobs/job-offer.css') }}" />
  35. {% endblock %}