| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 title=Working at Eyeo | 1 title=Working at Eyeo |
| 2 | 2 |
| 3 {# | 3 {# |
| 4 For each job opening you have to list the title and the name of the file under | 4 For each job opening you have to list the title and the name of the file under |
| 5 includes/jobs/openings that contains the job description. | 5 includes/jobs/openings that contains the job description. |
| 6 #} | 6 #} |
| 7 {% set openings = [ | 7 {% set openings = [ |
| 8 ("Account Manager USA/GB", "account-manager-usa-gb"), | 8 ("Account Manager USA/GB", "account-manager-usa-gb"), |
| 9 ("Senior JavaScript Developer", "senior-javascript-developer"), | 9 ("Senior JavaScript Developer", "senior-javascript-developer"), |
| 10 ("Senior Web Developer", "senior-web-developer"), | 10 ("Senior Web Developer", "senior-web-developer"), |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 49 </script> | 49 </script> |
| 50 | 50 |
| 51 | 51 |
| 52 <header class="page-title"> | 52 <header class="page-title"> |
| 53 <h1>Working at Eyeo</h1> | 53 <h1>Working at Eyeo</h1> |
| 54 </header> | 54 </header> |
| 55 | 55 |
| 56 <div id="jobs-info" class="content-block"> | 56 <div id="jobs-info" class="content-block"> |
| 57 <div id="tabs-openings" class="columns-container one-sidebar"> | 57 <div id="tabs-openings" class="columns-container one-sidebar"> |
| 58 <div class="column sidebar-left"> | 58 <div class="column sidebar-left"> |
| 59 <div id="hr-contacts"> | |
| 60 <? include jobs/contact ?> | |
|
Thomas Greiner
2015/03/24 10:46:31
Detail: Use two spaces for indentation, not four.
saroyanm
2015/03/24 14:10:56
Ahh, again here, yes I've noticed in another revie
| |
| 61 </div> | |
| 62 | |
| 59 <h3 class="heading centered"><span>Current openings:</span></h3> | 63 <h3 class="heading centered"><span>Current openings:</span></h3> |
| 60 | 64 |
| 61 <ul> | 65 <ul> |
| 62 <li id="jobs-overview-tab"><a href="#jobs-overview"></a></li> | 66 <li id="jobs-overview-tab"><a href="#jobs-overview"></a></li> |
| 63 {% for title, file in openings %} | 67 {% for title, file in openings %} |
| 64 <li> | 68 <li> |
| 65 <a href="#{{ title|slugify }}"> | 69 <a href="#{{ title|slugify }}"> |
| 66 {{ title }} | 70 {{ title }} |
| 67 {% if file in german_openings %} | 71 {% if file in german_openings %} |
| 68 <img src="/images/flags/de.png" alt="German" width="15" height=" 10"> | 72 <img src="/images/flags/de.png" alt="German" width="15" height=" 10"> |
| 69 {% endif %} | 73 {% endif %} |
| 70 </a> | 74 </a> |
| 71 </li> | 75 </li> |
| 72 {% endfor %} | 76 {% endfor %} |
| 73 </ul> | 77 </ul> |
| 74 | 78 |
| 75 <p id="hiring-badges"> | 79 <p id="hiring-badges"> |
| 76 <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi dth="120" height="80"> | 80 <img id="ihk-logo" src="/images/ihk.png" alt="IHK Ausbildungsbetrieb" wi dth="120" height="80"> |
| 77 <img id="fair-company-logo" src="/images/fair-company.jpg" alt="Fair Com pany" height="80"> | 81 <img id="fair-company-logo" src="/images/fair-company.jpg" alt="Fair Com pany" height="80"> |
| 78 </p> | 82 </p> |
| 79 | |
| 80 <p> | |
| 81 <? include jobs/contact ?> | |
| 82 </p> | |
| 83 </div> | 83 </div> |
| 84 | 84 |
| 85 <div class="column"> | 85 <div class="column"> |
| 86 <div id="panels-openings"> | 86 <div id="panels-openings"> |
| 87 <div id="jobs-overview"> | 87 <div id="jobs-overview"> |
| 88 <? include jobs/overview ?> | 88 <? include jobs/overview ?> |
| 89 | 89 |
| 90 <div id="tabs-details"> | 90 <div id="tabs-details"> |
| 91 <ul> | 91 <ul> |
| 92 <li><a href="#why">Why work with us?</a></li> | 92 <li><a href="#why">Why work with us?</a></li> |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 113 <h2>{{ title }}</h2> | 113 <h2>{{ title }}</h2> |
| 114 <? include jobs/openings/{{ file }} ?> | 114 <? include jobs/openings/{{ file }} ?> |
| 115 <a href="mailto:jobs@eyeo.com"><button>apply now</button></a> | 115 <a href="mailto:jobs@eyeo.com"><button>apply now</button></a> |
| 116 <a href="#jobs-overview"><button class="why-work-here-button">why wo rk here?</button></a> | 116 <a href="#jobs-overview"><button class="why-work-here-button">why wo rk here?</button></a> |
| 117 </div> | 117 </div> |
| 118 {% endfor %} | 118 {% endfor %} |
| 119 </div> | 119 </div> |
| 120 </div> | 120 </div> |
| 121 </div> | 121 </div> |
| 122 </div> | 122 </div> |
| OLD | NEW |