Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html lang="{{locale}}"> | 2 <html lang="{{locale}}"> |
3 <head> | 3 <head> |
4 » <? include meta ?> | 4 {# HTML5 essentials #} |
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 charset="UTF-8" /> | |
6 <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scal e=1,user-scalable=no" /> | |
7 <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
8 | |
9 {# HTML5 meta #} | |
10 {% if description %} | |
11 <meta name="description" content="{{ description }}"> | |
12 {% endif %} | |
13 | |
14 {# http://ogp.me/ #} | |
15 <meta property="og:image" content="{{og_image if og_image else 'https://eyeo.c om/images/eyeo-meta-default.png'}}"> | |
16 | |
5 {% if title %} | 17 {% if title %} |
6 <title>{{title}} | eyeo GmbH</title> | 18 <title>{{title}} | eyeo GmbH</title> |
7 {% else %} | 19 {% else %} |
8 <title>eyeo GmbH</title> | 20 <title>eyeo GmbH</title> |
9 {% endif %} | 21 {% endif %} |
10 | 22 |
11 <link rel="shortcut icon" href="/images/favicon.png" /> | 23 <link rel="shortcut icon" href="/images/favicon.png" /> |
12 | 24 |
13 <link rel="stylesheet" href="/css/styles.css" type="text/css" media="all"> | 25 <link rel="stylesheet" href="/css/styles.css" type="text/css" media="all"> |
14 | 26 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
84 </small> | 96 </small> |
85 <div id="footer-links"> | 97 <div id="footer-links"> |
86 {{"contact"|linkify}}Made with ♥ in Cologne</a> | 98 {{"contact"|linkify}}Made with ♥ in Cologne</a> |
87 {{"privacy"|linkify}}Privacy Policy</a> | 99 {{"privacy"|linkify}}Privacy Policy</a> |
88 </div> | 100 </div> |
89 </div> | 101 </div> |
90 </footer> | 102 </footer> |
91 </body> | 103 </body> |
92 | 104 |
93 </html> | 105 </html> |
LEFT | RIGHT |