Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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", TALENTTRACKER, 189), |
21 ("Data Engineer", "data-engineer", TALENTTRACKER, 194), | 21 ("Data Engineer", "data-engineer", TALENTTRACKER, 194), |
22 ("Technical Support Analyst", "technical-support-analyst", TALENTTRACKER, 191) , | 22 ("Technical Support Analyst", "technical-support-analyst", TALENTTRACKER, 191) , |
23 ("Filter List Supporter", "filter-list-supporter", TALENTTRACKER, 127), | 23 ("Filter List Supporter", "filter-list-supporter", TALENTTRACKER, 127), |
24 ("Whitelist Maintainer", "whitelist-maintainer", TALENTTRACKER, 108), | 24 ("Whitelist Maintainer", "whitelist-maintainer", TALENTTRACKER, 108), |
25 ("Flattr Campaign Coordinator (Student Help)", "flattr-campaign-coordinator-st udent-help", TALENTTRACKER, 195), | 25 ("Flattr Campaign Coordinator (Student Help)", "flattr-campaign-coordinator-st udent-help", TALENTTRACKER, 195), |
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", TALENTTRACKER, 193), |
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", TALENTT RACKER, 178), |
28 ("Speculative Application", "speculative-application", TALENTTRACKER, 51), | 28 ("Speculative Application", "speculative-application", TALENTTRACKER, 51), |
29 ("test", "test"), | |
ire
2017/10/10 11:43:53
I think you forgot to delete this :)
juliandoucette
2017/10/10 11:59:20
Thank you! :D
| |
30 ] %} | 29 ] %} |
31 | 30 |
32 {% set opening = openings|find(page.split("/")[-1], attribute=1) %} | 31 {% set opening = openings|find(page.split("/")[-1], attribute=1) %} |
33 {% set title = (opening or [title])[0] %} | 32 {% set title = (opening or [title])[0] %} |
34 {% set og_image = "https://eyeo.com/images/eyeo-meta-jobs.png" %} | 33 {% set og_image = "https://eyeo.com/images/eyeo-meta-jobs.png" %} |
35 | 34 |
36 <header class="page-title"> | 35 <header class="page-title"> |
37 <h1>Working at eyeo</h1> | 36 <h1>Working at eyeo</h1> |
38 </header> | 37 </header> |
39 | 38 |
(...skipping 26 matching lines...) Expand all Loading... | |
66 <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"> |
67 <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"> |
68 </p> | 67 </p> |
69 </div> | 68 </div> |
70 | 69 |
71 <div class="column"> | 70 <div class="column"> |
72 <div id="panels-openings" class="ui-tabs-panel"> | 71 <div id="panels-openings" class="ui-tabs-panel"> |
73 {% if opening %} | 72 {% if opening %} |
74 <h2>{{ title }}</h2> | 73 <h2>{{ title }}</h2> |
75 {% endif %} | 74 {% endif %} |
LEFT | RIGHT |