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; |
(...skipping 25 matching lines...) Expand all Loading... |
36 <div id="tabs-openings" class="columns-container one-sidebar"> | 36 <div id="tabs-openings" class="columns-container one-sidebar"> |
37 <div class="column sidebar-left"> | 37 <div class="column sidebar-left"> |
38 <h3 class="heading centered"><span>Current openings:</span></h3> | 38 <h3 class="heading centered"><span>Current openings:</span></h3> |
39 | 39 |
40 <ul class="ui-tabs-nav ui-tabs-nav-vertical"> | 40 <ul class="ui-tabs-nav ui-tabs-nav-vertical"> |
41 {% for title, file, _ in openings %} | 41 {% for title, file, _ in openings %} |
42 <li {% if file == page.split("/")[-1] %} class="ui-tabs-active" {% end
if %}> | 42 <li {% if file == page.split("/")[-1] %} class="ui-tabs-active" {% end
if %}> |
43 {{("jobs/" + file)|linkify(class="ui-tabs-anchor")}} | 43 {{("jobs/" + file)|linkify(class="ui-tabs-anchor")}} |
44 {{ title }} | 44 {{ title }} |
45 {% if file in german_openings %} | 45 {% if file in german_openings %} |
46 <img src="/images/flags/de.png" alt="German" width="15" height="
10"> | 46 <img src="/images/flags/germany.png" alt="German" width="15" hei
ght="10"> |
47 {% endif %} | 47 {% endif %} |
48 </a> | 48 </a> |
49 </li> | 49 </li> |
50 {% endfor %} | 50 {% endfor %} |
51 </ul> | 51 </ul> |
52 | 52 |
53 | 53 |
54 <div class="contact-person no-mobile"> | 54 <div class="contact-person no-mobile"> |
55 <? include jobs/contact ?> | 55 <? include jobs/contact ?> |
56 </div> | 56 </div> |
57 | 57 |
58 <p id="hiring-badges" class="no-mobile"> | 58 <p id="hiring-badges" class="no-mobile"> |
59 <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi
dth="120" height="80"> | 59 <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi
dth="120" height="80"> |
60 <img id="fair-company-logo" src="/images/fair-company.png" alt="Fair Com
pany" height="80"> | 60 <img id="fair-company-logo" src="/images/fair-company.png" alt="Fair Com
pany" height="80"> |
61 </p> | 61 </p> |
62 </div> | 62 </div> |
63 | 63 |
64 <div class="column"> | 64 <div class="column"> |
65 <div id="panels-openings" class="ui-tabs-panel"> | 65 <div id="panels-openings" class="ui-tabs-panel"> |
66 {% if opening %} | 66 {% if opening %} |
67 <h2>{{ title }}</h2> | 67 <h2>{{ title }}</h2> |
68 {% endif %} | 68 {% endif %} |
OLD | NEW |