| OLD | NEW | 
|   1 <!DOCTYPE html> |   1 <!DOCTYPE html> | 
|   2 <html lang="{{locale}}"> |   2 <html lang="{{locale}}"> | 
|   3 <head> |   3 <head> | 
|   4   <meta charset="UTF-8" /> |   4   <meta charset="UTF-8" /> | 
|   5   <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scal
    e=1,user-scalable=no" /> |   5   <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scal
    e=1,user-scalable=no" /> | 
|   6   <meta http-equiv="X-UA-Compatible" content="IE=edge"> |   6   <meta http-equiv="X-UA-Compatible" content="IE=edge"> | 
|   7  |   7  | 
|   8   {% if title %} |   8   {% if title %} | 
|   9   <title>{{title}} | Eyeo GmbH</title> |   9   <title>{{title}} | Eyeo GmbH</title> | 
|  10   {% else %} |  10   {% else %} | 
| (...skipping 21 matching lines...) Expand all  Loading... | 
|  32       <a id="logo" href="{{source.resolve_link("index", locale)[1]}}" hreflang="
    {{source.resolve_link("index", locale)[0]}}" title="Eyeo GmbH" rel="home"><img s
    rc="/images/tog_logo.png" alt="Eyeo GmbH" /></a> |  32       <a id="logo" href="{{source.resolve_link("index", locale)[1]}}" hreflang="
    {{source.resolve_link("index", locale)[0]}}" title="Eyeo GmbH" rel="home"><img s
    rc="/images/tog_logo.png" alt="Eyeo GmbH" /></a> | 
|  33  |  33  | 
|  34       <nav id="menu" role="navigation"> |  34       <nav id="menu" role="navigation"> | 
|  35         <h3 class="assistive-text">Main menu</h3> |  35         <h3 class="assistive-text">Main menu</h3> | 
|  36         <a class="assistive-text" href="#begin-of-content">Skip to primary conte
    nt</a> |  36         <a class="assistive-text" href="#begin-of-content">Skip to primary conte
    nt</a> | 
|  37         <a class="assistive-text" href="#secondary">Skip to secondary content</a
    > |  37         <a class="assistive-text" href="#secondary">Skip to secondary content</a
    > | 
|  38  |  38  | 
|  39         <a href="{{source.resolve_link("jobs", locale)[1]}}" hreflang="{{source.
    resolve_link("jobs", locale)[0]}}" class="menu-button">Join us - we are hiring!<
    /a> |  39         <a href="{{source.resolve_link("jobs", locale)[1]}}" hreflang="{{source.
    resolve_link("jobs", locale)[0]}}" class="menu-button">Join us - we are hiring!<
    /a> | 
|  40  |  40  | 
|  41         <ul class="menu-list"> |  41         <ul class="menu-list"> | 
|  42           {%- for link, title in [("index", "About Us"), ("team", "Team"), ("pre
    ss", "Press"), ("contact", "Contact Us")] %} |  42           {%- for link, title in [("index", "About Us"), ("services", "Services"
    ), ("team", "Team"), ("press", "Press"), ("contact", "Contact Us")] %} | 
|  43             {%- if link == page %} |  43             {%- if link == page %} | 
|  44               <li class="menu-item menu-item-type-post_type menu-item-object-pag
    e current-menu-item page_item current_page_item">{{link|linkify}}<span>{{title}}
    </span></a></li> |  44               <li class="menu-item menu-item-type-post_type menu-item-object-pag
    e current-menu-item page_item current_page_item">{{link|linkify}}<span>{{title}}
    </span></a></li> | 
|  45             {%- else %} |  45             {%- else %} | 
|  46               <li class="menu-item menu-item-type-post_type menu-item-object-pag
    e">{{link|linkify}}<span>{{title}}</span></a></li> |  46               <li class="menu-item menu-item-type-post_type menu-item-object-pag
    e">{{link|linkify}}<span>{{title}}</span></a></li> | 
|  47             {%- endif %} |  47             {%- endif %} | 
|  48           {%- endfor %} |  48           {%- endfor %} | 
|  49         </ul> |  49         </ul> | 
|  50       </nav> |  50       </nav> | 
|  51     </div> |  51     </div> | 
|  52   </header> |  52   </header> | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
|  64       <div class="footer-text"> |  64       <div class="footer-text"> | 
|  65         Adblock Plus™ and Acceptable Ads™ are registered trademarks of Eyeo GmbH
    . |  65         Adblock Plus™ and Acceptable Ads™ are registered trademarks of Eyeo GmbH
    . | 
|  66       </div> |  66       </div> | 
|  67  |  67  | 
|  68       <a href="#top" id="to-top" style="opacity: 0;"></a> |  68       <a href="#top" id="to-top" style="opacity: 0;"></a> | 
|  69     </div> |  69     </div> | 
|  70   </footer> |  70   </footer> | 
|  71 </body> |  71 </body> | 
|  72  |  72  | 
|  73 </html> |  73 </html> | 
| OLD | NEW |