| 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 openings = [ |  15 {% set openings = [ | 
 |  16   ("Flattr Community Manager", "flattr-community-manager", 187), | 
|  16   ("Frontend Developer", "frontend-developer", 33), |  17   ("Frontend Developer", "frontend-developer", 33), | 
|  17   ("Filter List Supporter", "filter-list-supporter", 127), |  18   ("Filter List Supporter", "filter-list-supporter", 127), | 
|  18   ("Whitelist Maintainer", "whitelist-maintainer", 108), |  19   ("Whitelist Maintainer", "whitelist-maintainer", 108), | 
|  19   ("Student Help Data Protection (m/w)", "student-help-data-protection", 178), |  20   ("Student Help Data Protection (m/w)", "student-help-data-protection", 178), | 
|  20   ("Speculative Application", "speculative-application", 51), |  21   ("Speculative Application", "speculative-application", 51), | 
|  21 ] %} |  22 ] %} | 
|  22  |  23  | 
|  23 {% set opening = openings|find(page.split("/")[-1], attribute=1) %} |  24 {% set opening = openings|find(page.split("/")[-1], attribute=1) %} | 
|  24 {% set title = (opening or [title])[0] %} |  25 {% set title = (opening or [title])[0] %} | 
|  25 {% set og_image = "https://eyeo.com/images/eyeo-meta-jobs.png" %} |  26 {% set og_image = "https://eyeo.com/images/eyeo-meta-jobs.png" %} | 
| (...skipping 29 matching lines...) Expand all  Loading... | 
|  55         <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi
    dth="120" height="80"> |  56         <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi
    dth="120" height="80"> | 
|  56         <img id="fair-company-logo" src="/images/fair-company.png" alt="Fair Com
    pany" height="80"> |  57         <img id="fair-company-logo" src="/images/fair-company.png" alt="Fair Com
    pany" height="80"> | 
|  57       </p> |  58       </p> | 
|  58     </div> |  59     </div> | 
|  59  |  60  | 
|  60     <div class="column"> |  61     <div class="column"> | 
|  61       <div id="panels-openings" class="ui-tabs-panel"> |  62       <div id="panels-openings" class="ui-tabs-panel"> | 
|  62         {% if opening %} |  63         {% if opening %} | 
|  63         <h2>{{ title }}</h2> |  64         <h2>{{ title }}</h2> | 
|  64         {% endif %} |  65         {% endif %} | 
| OLD | NEW |