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 '/images/eyeo-m
eta-default.png'}}"> |
7 | 8 |
8 {% if title %} | 9 {% if title %} |
9 <title>{{title}} | Eyeo GmbH</title> | 10 <title>{{title}} | Eyeo GmbH</title> |
10 {% else %} | 11 {% else %} |
11 <title>Eyeo GmbH</title> | 12 <title>Eyeo GmbH</title> |
12 {% endif %} | 13 {% endif %} |
13 | 14 |
14 <link rel="shortcut icon" href="/images/favicon.png" /> | 15 <link rel="shortcut icon" href="/images/favicon.png" /> |
15 | 16 |
16 <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"> |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 </small> | 88 </small> |
88 <div id="footer-links"> | 89 <div id="footer-links"> |
89 {{"contact"|linkify}}Made with ♥ in Cologne</a> | 90 {{"contact"|linkify}}Made with ♥ in Cologne</a> |
90 {{"privacy"|linkify}}Privacy Policy</a> | 91 {{"privacy"|linkify}}Privacy Policy</a> |
91 </div> | 92 </div> |
92 </div> | 93 </div> |
93 </footer> | 94 </footer> |
94 </body> | 95 </body> |
95 | 96 |
96 </html> | 97 </html> |
OLD | NEW |