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