| 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   <meta property="og:image" content="{{og_image if og_image else 'https://eyeo.c
    om/images/eyeo-meta-default.png'}}"> |   7   <meta property="og:image" content="{{og_image if og_image else 'https://eyeo.c
    om/images/eyeo-meta-default.png'}}"> | 
|   8  |   8  | 
|   9   {% if title %} |   9   {% if title %} | 
|  10   <title>{{title}} | Eyeo GmbH</title> |  10   <title>{{title}} | Eyeo GmbH</title> | 
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  47       <button id="header-hamburger" aria-expanded="false"> |  47       <button id="header-hamburger" aria-expanded="false"> | 
|  48         <span class="assistive-text">Toggle navigation</span> |  48         <span class="assistive-text">Toggle navigation</span> | 
|  49         <span class="icon-bar"></span> |  49         <span class="icon-bar"></span> | 
|  50         <span class="icon-bar"></span> |  50         <span class="icon-bar"></span> | 
|  51         <span class="icon-bar"></span> |  51         <span class="icon-bar"></span> | 
|  52       </button> |  52       </button> | 
|  53  |  53  | 
|  54       <nav id="menu" role="navigation" aria-labelledby="header-hamburger" aria-e
    xpanded="false"> |  54       <nav id="menu" role="navigation" aria-labelledby="header-hamburger" aria-e
    xpanded="false"> | 
|  55         <h1 class="assistive-text">Main menu</h1> |  55         <h1 class="assistive-text">Main menu</h1> | 
|  56         <ul class="menu-list"> |  56         <ul class="menu-list"> | 
|  57           {%- for link, title in [("index", "About Us"), ("services", "Services"
    ), ("team", "Team"), ("press", "Press"), ("contact", "Contact Us")] %} |  57           {%- for link, title in [("index", "About"), ("services", "Services"), 
    ("team", "Team"), ("press", "Press"), ("contact", "Contact")] %} | 
|  58             {%- if link == page %} |  58             {%- if link == page %} | 
|  59               <li class="current-menu-item"> |  59               <li class="current-menu-item"> | 
|  60                 {{link|linkify}} |  60                 {{link|linkify}} | 
|  61                   <span>{{title}}</span> |  61                   <span>{{title}}</span> | 
|  62                 </a> |  62                 </a> | 
|  63               </li> |  63               </li> | 
|  64             {%- else %} |  64             {%- else %} | 
|  65               <li> |  65               <li> | 
|  66                 {{link|linkify}} |  66                 {{link|linkify}} | 
|  67                   <span>{{title}}</span> |  67                   <span>{{title}}</span> | 
| (...skipping 20 matching lines...) Expand all  Loading... | 
|  88       </small> |  88       </small> | 
|  89       <div id="footer-links"> |  89       <div id="footer-links"> | 
|  90         {{"contact"|linkify}}Made with ♥ in Cologne</a> |  90         {{"contact"|linkify}}Made with ♥ in Cologne</a> | 
|  91         {{"privacy"|linkify}}Privacy Policy</a> |  91         {{"privacy"|linkify}}Privacy Policy</a> | 
|  92       </div> |  92       </div> | 
|  93     </div> |  93     </div> | 
|  94   </footer> |  94   </footer> | 
|  95 </body> |  95 </body> | 
|  96  |  96  | 
|  97 </html> |  97 </html> | 
| OLD | NEW |