Left: | ||
Right: |
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 » <? include meta ?> |
saroyanm
2017/02/22 13:10:47
Detail: please use 2 space indentation, as specifi
erick
2017/02/28 12:46:41
Done.
| |
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"> | |
7 <meta property="og:image" content="{{og_image if og_image else 'https://eyeo.c om/images/eyeo-meta-default.png'}}"> | |
8 | |
9 {% if title %} | 5 {% if title %} |
10 <title>{{title}} | eyeo GmbH</title> | 6 <title>{{title}} | eyeo GmbH</title> |
11 {% else %} | 7 {% else %} |
12 <title>eyeo GmbH</title> | 8 <title>eyeo GmbH</title> |
13 {% endif %} | 9 {% endif %} |
14 | 10 |
15 <link rel="shortcut icon" href="/images/favicon.png" /> | 11 <link rel="shortcut icon" href="/images/favicon.png" /> |
16 | 12 |
17 <link rel="stylesheet" href="/css/styles.css" type="text/css" media="all"> | 13 <link rel="stylesheet" href="/css/styles.css" type="text/css" media="all"> |
18 | 14 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
88 </small> | 84 </small> |
89 <div id="footer-links"> | 85 <div id="footer-links"> |
90 {{"contact"|linkify}}Made with ♥ in Cologne</a> | 86 {{"contact"|linkify}}Made with ♥ in Cologne</a> |
91 {{"privacy"|linkify}}Privacy Policy</a> | 87 {{"privacy"|linkify}}Privacy Policy</a> |
92 </div> | 88 </div> |
93 </div> | 89 </div> |
94 </footer> | 90 </footer> |
95 </body> | 91 </body> |
96 | 92 |
97 </html> | 93 </html> |
OLD | NEW |