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 {% set openings = [ | 5 {% set openings = [ |
6 ("Frontend Developer", "frontend-developer"), | 6 ("Frontend Developer", "frontend-developer"), |
7 ("Android Developer", "android-developer"), | 7 ("Android Developer", "android-developer"), |
| 8 ("JavaScript Developer", "javascript-developer"), |
8 ("Technical Recruiter", "technical-recruiter"), | 9 ("Technical Recruiter", "technical-recruiter"), |
9 ("Technical Account Manager", "technical-account-manager"), | 10 ("Technical Account Manager", "technical-account-manager"), |
10 ("Manager Kommunikation & Social Media DACH (m/w)", "manager-kommunikation-soc
ial-media-dach"), | 11 ("Manager Kommunikation & Social Media DACH (m/w)", "manager-kommunikation-soc
ial-media-dach"), |
11 ] %} | 12 ] %} |
12 {% set german_openings = ["manager-kommunikation-social-media-dach"] %} | 13 {% set german_openings = ["manager-kommunikation-social-media-dach"] %} |
13 | 14 |
14 {% set opening = openings|find(page.split("/")[-1], attribute=1) %} | 15 {% set opening = openings|find(page.split("/")[-1], attribute=1) %} |
15 {% set title, _ = opening or (title, "") %} | 16 {% set title, _ = opening or (title, "") %} |
16 | 17 |
17 <header class="page-title"> | 18 <header class="page-title"> |
(...skipping 27 matching lines...) Expand all Loading... |
45 <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi
dth="120" height="80"> | 46 <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi
dth="120" height="80"> |
46 <img id="fair-company-logo" src="/images/fair-company.jpg" alt="Fair Com
pany" height="80"> | 47 <img id="fair-company-logo" src="/images/fair-company.jpg" alt="Fair Com
pany" height="80"> |
47 </p> | 48 </p> |
48 </div> | 49 </div> |
49 | 50 |
50 <div class="column"> | 51 <div class="column"> |
51 <div id="panels-openings" class="ui-tabs-panel"> | 52 <div id="panels-openings" class="ui-tabs-panel"> |
52 {% if opening %} | 53 {% if opening %} |
53 <h2>{{ title }}</h2> | 54 <h2>{{ title }}</h2> |
54 {% endif %} | 55 {% endif %} |
OLD | NEW |