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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 76 |
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 <a id="footer-contact" href="{{source.resolve_link("contact", locale)[1]}}
" hreflang="{{source.resolve_link("contact", locale)[0]}}"> | 86 <span> |
| 87 Adblock Plus™ and Acceptable Ads™ are registered trademarks of Eyeo GmbH
. |
| 88 </span> |
| 89 <div id="footer-links"> |
| 90 <a href="{{source.resolve_link("contact", locale)[1]}}" hreflang="{{sour
ce.resolve_link("contact", locale)[0]}}"> |
87 Made with ♥ in Cologne | 91 Made with ♥ in Cologne |
88 </a> | 92 </a> |
89 | 93 <a href="{{source.resolve_link("privacy", locale)[1]}}" hreflang="{{sour
ce.resolve_link("privacy", locale)[0]}}"> |
90 <div class="footer-text"> | 94 Privacy Policy |
91 Adblock Plus™ and Acceptable Ads™ are registered trademarks of Eyeo GmbH
. | 95 </a> |
92 </div> | 96 </div> |
93 | |
94 </div> | 97 </div> |
95 </footer> | 98 </footer> |
96 </body> | 99 </body> |
97 | 100 |
98 </html> | 101 </html> |
OLD | NEW |