OLD | NEW |
(Empty) | |
| 1 {# |
| 2 For each job opening you have to list the title and the name of the file under |
| 3 pages/jobs that contains the job description. |
| 4 #} |
| 5 {% set openings = [ |
| 6 ("Account Manager USA/GB", "account-manager-usa-gb"), |
| 7 ("Senior JavaScript Developer", "senior-javascript-developer"), |
| 8 ("Senior Web Developer", "senior-web-developer"), |
| 9 ("Android Developer", "android-developer"), |
| 10 ("PR Intern", "pr-intern"), |
| 11 ("Business Development Manager", "business-development-manager"), |
| 12 ("Student Help Communications", "student-help-communications"), |
| 13 ("Data Scientist", "data-scientist"), |
| 14 ("Software Tester", "software-tester"), |
| 15 ] %} |
| 16 |
| 17 {% set german_openings = ["senior-systemadministrator", "buchhalter", "account-m
anager-de"] %} |
| 18 |
| 19 <head> |
| 20 <script> |
| 21 jQuery(function() |
| 22 { |
| 23 var filename = location.pathname.substring(location.pathname.lastIndexOf('
/') + 1); |
| 24 jQuery("#" + filename).addClass("ui-tabs-active"); |
| 25 }); |
| 26 </script> |
| 27 </head> |
| 28 |
| 29 <header class="page-title"> |
| 30 <h1>Working at Eyeo</h1> |
| 31 </header> |
| 32 |
| 33 <div id="jobs-info" class="content-block"> |
| 34 <div id="tabs-openings" class="columns-container one-sidebar"> |
| 35 <div class="column sidebar-left"> |
| 36 <h3 class="heading centered"><span>Current openings:</span></h3> |
| 37 |
| 38 <ul class="ui-tabs-nav ui-tabs-nav-vertical"> |
| 39 {% for title, file in openings %} |
| 40 <li id="{{ file }}"> |
| 41 <a href="/en/jobs/{{ file }}" class="ui-tabs-anchor"> |
| 42 {{ title }} |
| 43 {% if file in german_openings %} |
| 44 <img src="/images/flags/de.png" alt="German" width="15" height="
10"> |
| 45 {% endif %} |
| 46 </a> |
| 47 </li> |
| 48 {% endfor %} |
| 49 </ul> |
| 50 |
| 51 <p id="hiring-badges"> |
| 52 <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi
dth="120" height="80"> |
| 53 <img id="fair-company-logo" src="/images/fair-company.jpg" alt="Fair Com
pany" height="80"> |
| 54 </p> |
| 55 |
| 56 <p> |
| 57 <? include jobs/contact ?> |
| 58 </p> |
| 59 </div> |
| 60 |
| 61 <div class="column"> |
| 62 <div id="panels-openings" class="ui-tabs-panel"> |
OLD | NEW |