OLD | NEW |
1 {# | 1 {# |
2 For each job opening you have to list the title and the name of the file under | 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. | 3 pages/jobs that contains the job description. |
4 #} | 4 #} |
5 | 5 |
6 {% block head %} | 6 {% block head %} |
7 <style> | 7 <style> |
8 #tabs-openings .ui-tabs-nav-vertical | 8 #tabs-openings .ui-tabs-nav-vertical |
9 { | 9 { |
10 font-size: 16px; | 10 font-size: 16px; |
11 } | 11 } |
12 </style> | 12 </style> |
13 {% endblock %} | 13 {% endblock %} |
14 | 14 |
15 {% set GREENHOUSE = 1 %} | 15 {% set GREENHOUSE = 1 %} |
16 {% set TALENTTRACKER = 2 %} | 16 {% set TALENTTRACKER = 2 %} |
17 {% set EMAIL = 3 %} | 17 {% set EMAIL = 3 %} |
18 | 18 |
19 {% set openings = [ | 19 {% set openings = [ |
20 ("IT System Administrator", "it-system-administrator", TALENTTRACKER, 189), | 20 ("IT System Administrator", "it-system-administrator", GREENHOUSE, 866294), |
21 ("Data Engineer", "data-engineer", TALENTTRACKER, 194), | 21 ("Data Engineer", "data-engineer", GREENHOUSE, 907463), |
22 ("Technical Support Analyst", "technical-support-analyst", TALENTTRACKER, 191)
, | 22 ("Technical Support Analyst", "technical-support-analyst", GREENHOUSE, 907477)
, |
23 ("Filter List Supporter", "filter-list-supporter", TALENTTRACKER, 127), | 23 ("Filter List Supporter", "filter-list-supporter", GREENHOUSE, 907464), |
24 ("Whitelist Maintainer", "whitelist-maintainer", TALENTTRACKER, 108), | 24 ("Whitelist Maintainer", "whitelist-maintainer", GREENHOUSE, 858624), |
25 ("Marketing Student Help", "marketing-student-help", TALENTTRACKER, 195), | 25 ("Marketing Student Help", "marketing-student-help", GREENHOUSE, 891178), |
26 ("Student Help Acceptable Ads Monitoring", "student-help-acceptable-ads-monito
ring", TALENTTRACKER, 193), | 26 ("Student Help Acceptable Ads Monitoring", "student-help-acceptable-ads-monito
ring", GREENHOUSE, 907475), |
27 ("Student Help Data Protection (m/w)", "student-help-data-protection", TALENTT
RACKER, 178), | 27 ("Student Help Data Protection (m/w)", "student-help-data-protection", GREENHO
USE, 907476), |
28 ("Speculative Application", "speculative-application", TALENTTRACKER, 51), | 28 ("Speculative Application", "speculative-application", GREENHOUSE, 907468), |
29 ] %} | 29 ] %} |
30 | 30 |
31 {% set opening = openings|find(page.split("/")[-1], attribute=1) %} | 31 {% set opening = openings|find(page.split("/")[-1], attribute=1) %} |
32 {% set title = (opening or [title])[0] %} | 32 {% set title = (opening or [title])[0] %} |
33 {% set og_image = "https://eyeo.com/images/eyeo-meta-jobs.png" %} | 33 {% set og_image = "https://eyeo.com/images/eyeo-meta-jobs.png" %} |
34 | 34 |
35 <header class="page-title"> | 35 <header class="page-title"> |
36 <h1>Working at eyeo</h1> | 36 <h1>Working at eyeo</h1> |
37 </header> | 37 </header> |
38 | 38 |
(...skipping 26 matching lines...) Expand all Loading... |
65 <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi
dth="120" height="80"> | 65 <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi
dth="120" height="80"> |
66 <img id="fair-company-logo" src="/images/fair-company.png" alt="Fair Com
pany" height="80"> | 66 <img id="fair-company-logo" src="/images/fair-company.png" alt="Fair Com
pany" height="80"> |
67 </p> | 67 </p> |
68 </div> | 68 </div> |
69 | 69 |
70 <div class="column"> | 70 <div class="column"> |
71 <div id="panels-openings" class="ui-tabs-panel"> | 71 <div id="panels-openings" class="ui-tabs-panel"> |
72 {% if opening %} | 72 {% if opening %} |
73 <h2>{{ title }}</h2> | 73 <h2>{{ title }}</h2> |
74 {% endif %} | 74 {% endif %} |
OLD | NEW |