| 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   <title>{{title}} | Eyeo GmbH</title> |   8   <title>{{title}} | Eyeo GmbH</title> | 
|   9  |   9  | 
|  10   <link rel="shortcut icon" href="/images/favicon.png" /> |  10   <link rel="shortcut icon" href="/images/favicon.png" /> | 
| (...skipping 13 matching lines...) Expand all  Loading... | 
|  24       <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> |  24       <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> | 
|  25  |  25  | 
|  26       <nav id="menu" role="navigation"> |  26       <nav id="menu" role="navigation"> | 
|  27         <h3 class="assistive-text">Main menu</h3> |  27         <h3 class="assistive-text">Main menu</h3> | 
|  28         <a class="assistive-text" href="#begin-of-content">Skip to primary conte
    nt</a> |  28         <a class="assistive-text" href="#begin-of-content">Skip to primary conte
    nt</a> | 
|  29         <a class="assistive-text" href="#secondary">Skip to secondary content</a
    > |  29         <a class="assistive-text" href="#secondary">Skip to secondary content</a
    > | 
|  30  |  30  | 
|  31         <a href="{{source.resolve_link("jobs", locale)[1]}}" hreflang="{{source.
    resolve_link("jobs", locale)[0]}}" class="menu-button">Join us - we are hiring!<
    /a> |  31         <a href="{{source.resolve_link("jobs", locale)[1]}}" hreflang="{{source.
    resolve_link("jobs", locale)[0]}}" class="menu-button">Join us - we are hiring!<
    /a> | 
|  32  |  32  | 
|  33         <ul class="menu-list"> |  33         <ul class="menu-list"> | 
|  34           {%- for link, title in [("index", "About Us"), ("team", "Team"), ("pre
    ss", "Press"), ("contact", "Contact Us")] %} |  34           {%- for link, title in [("index", "About Us"), ("services", "Services"
    ), ("team", "Team"), ("press", "Press"), ("contact", "Contact Us")] %} | 
|  35             {%- if link == page %} |  35             {%- if link == page %} | 
|  36               <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> |  36               <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> | 
|  37             {%- else %} |  37             {%- else %} | 
|  38               <li class="menu-item menu-item-type-post_type menu-item-object-pag
    e">{{link|linkify}}<span>{{title}}</span></a></li> |  38               <li class="menu-item menu-item-type-post_type menu-item-object-pag
    e">{{link|linkify}}<span>{{title}}</span></a></li> | 
|  39             {%- endif %} |  39             {%- endif %} | 
|  40           {%- endfor %} |  40           {%- endfor %} | 
|  41         </ul> |  41         </ul> | 
|  42       </nav> |  42       </nav> | 
|  43     </div> |  43     </div> | 
|  44   </header> |  44   </header> | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
|  56       <div class="footer-text"> |  56       <div class="footer-text"> | 
|  57         Adblock Plus™ and Acceptable Ads™ are registered trademarks of Eyeo GmbH
    . |  57         Adblock Plus™ and Acceptable Ads™ are registered trademarks of Eyeo GmbH
    . | 
|  58       </div> |  58       </div> | 
|  59  |  59  | 
|  60       <a href="#top" id="to-top" style="opacity: 0;"></a> |  60       <a href="#top" id="to-top" style="opacity: 0;"></a> | 
|  61     </div> |  61     </div> | 
|  62   </footer> |  62   </footer> | 
|  63 </body> |  63 </body> | 
|  64  |  64  | 
|  65 </html> |  65 </html> | 
| OLD | NEW |