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" /> |
11 | 11 |
12 <link rel="stylesheet" href="/css/styles.css" type="text/css" media="all"> | 12 <link rel="stylesheet" href="/css/styles.css" type="text/css" media="all"> |
13 | 13 |
14 <script src="/js/jquery.js"></script> | 14 <script src="/js/jquery.js"></script> |
15 <script src="/js/scripts.js"></script> | 15 <script src="/js/scripts.js"></script> |
16 | 16 |
17 <link rel="canonical" href="https://eyeo.com/{{page}}"> | 17 <link rel="canonical" href="https://eyeo.com/{{page}}"> |
| 18 |
| 19 {% block head %} |
| 20 {{head|safe}} |
| 21 {% endblock %} |
18 </head> | 22 </head> |
19 | 23 |
20 <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"> | 24 <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"> |
21 | 25 |
22 <header id="header"> | 26 <header id="header"> |
23 <div class="content-block"> | 27 <div class="content-block"> |
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> | 28 <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 | 29 |
26 <nav id="menu" role="navigation"> | 30 <nav id="menu" role="navigation"> |
27 <h3 class="assistive-text">Main menu</h3> | 31 <h3 class="assistive-text">Main menu</h3> |
(...skipping 28 matching lines...) Expand all Loading... |
56 <div class="footer-text"> | 60 <div class="footer-text"> |
57 Adblock Plus™ and Acceptable Ads™ are registered trademarks of Eyeo GmbH
. | 61 Adblock Plus™ and Acceptable Ads™ are registered trademarks of Eyeo GmbH
. |
58 </div> | 62 </div> |
59 | 63 |
60 <a href="#top" id="to-top" style="opacity: 0;"></a> | 64 <a href="#top" id="to-top" style="opacity: 0;"></a> |
61 </div> | 65 </div> |
62 </footer> | 66 </footer> |
63 </body> | 67 </body> |
64 | 68 |
65 </html> | 69 </html> |
OLD | NEW |