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> |
11 {% else %} | 11 {% else %} |
12 <title>Eyeo GmbH</title> | 12 <title>eyeo GmbH</title> |
13 {% endif %} | 13 {% endif %} |
14 | 14 |
15 <link rel="shortcut icon" href="/images/favicon.png" /> | 15 <link rel="shortcut icon" href="/images/favicon.png" /> |
16 | 16 |
17 <link rel="stylesheet" href="/css/styles.css" type="text/css" media="all"> | 17 <link rel="stylesheet" href="/css/styles.css" type="text/css" media="all"> |
18 | 18 |
19 <!--[if lt IE 9]> | 19 <!--[if lt IE 9]> |
20 <script src="/js/html5shiv.min.js"></script> | 20 <script src="/js/html5shiv.min.js"></script> |
21 <script src="/js/respond.min.js"></script> | 21 <script src="/js/respond.min.js"></script> |
22 <![endif]--> | 22 <![endif]--> |
23 | 23 |
24 <script src="/js/jquery.js"></script> | 24 <script src="/js/jquery.js"></script> |
25 <script src="/js/scripts.js"></script> | 25 <script src="/js/scripts.js"></script> |
26 | 26 |
27 <link rel="canonical" href="https://eyeo.com/{{ page[:-5] if page.split('/')[-
1] == 'index' else page }}"> | 27 <link rel="canonical" href="https://eyeo.com/{{ page[:-5] if page.split('/')[-
1] == 'index' else page }}"> |
28 | 28 |
29 {% block head %} | 29 {% block head %} |
30 {{head|safe}} | 30 {{head|safe}} |
31 {% endblock %} | 31 {% endblock %} |
32 </head> | 32 </head> |
33 | 33 |
34 <body id="top" class="home page page-template-default apollo_validation_on cover
wpb-js-composer js-comp-ver-3.6.14.1 vc_responsive"> | 34 <body id="top" class="home page page-template-default apollo_validation_on cover
wpb-js-composer js-comp-ver-3.6.14.1 vc_responsive"> |
35 | 35 |
36 <header id="header" class="top"> | 36 <header id="header" class="top"> |
37 <div class="content-block"> | 37 <div class="content-block"> |
38 | 38 |
39 {{"index"|linkify(id="logo",title="Eyeo GmbH",rel="home")}} | 39 {{"index"|linkify(id="logo",title="eyeo GmbH",rel="home")}} |
40 <img src="/images/logo.png" srcset="/images/logo.png 1x, /images/logo-2x
.png 2x" alt="Eyeo GmbH" /> | 40 <img src="/images/logo.png" srcset="/images/logo.png 1x, /images/logo-2x
.png 2x" alt="eyeo GmbH" /> |
41 </a> | 41 </a> |
42 | 42 |
43 <a class="assistive-text" href="#content"> | 43 <a class="assistive-text" href="#content"> |
44 Skip to main content | 44 Skip to main content |
45 </a> | 45 </a> |
46 | 46 |
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> |
(...skipping 26 matching lines...) Expand all Loading... |
77 </div> | 77 </div> |
78 </header> | 78 </header> |
79 | 79 |
80 <div id="content"> | 80 <div id="content"> |
81 {{body|safe}} | 81 {{body|safe}} |
82 </div> | 82 </div> |
83 | 83 |
84 <footer id="footer"> | 84 <footer id="footer"> |
85 <div class="content-block"> | 85 <div class="content-block"> |
86 <small> | 86 <small> |
87 Adblock Plus™ and Acceptable Ads™ are registered trademarks of Eyeo GmbH
. | 87 Adblock Plus™ and Acceptable Ads™ are registered trademarks of eyeo GmbH
. |
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 |