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 {# HTML5 essentials #} |
5 <meta charset="utf-8"> | |
saroyanm
2017/02/28 17:24:58
It's uppercase UTF-8 -> https://developer.mozilla.
erick
2017/03/01 11:29:40
Done.
| |
5 <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scal e=1,user-scalable=no" /> | 6 <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 http-equiv="X-UA-Compatible" content="IE=edge"> |
8 | |
9 {# HTML5 meta #} | |
10 <meta name="title" content="{{ title }}" > | |
saroyanm
2017/02/28 17:24:58
The title is being specified below, I don't think
erick
2017/03/01 11:29:40
You are right. I thought there is a difference whe
| |
11 <meta name="description" content="{{ description if description else 'eyeo fea tures a host of products, all of which are geared toward giving users more contr ol and more information about their online experience.' }}"> | |
saroyanm
2017/02/28 17:24:58
Why are you using the description below:
"eyeo fea
erick
2017/03/01 11:29:40
It should be used as a placeholder, when there is
| |
12 | |
13 {# http://ogp.me/ #} | |
7 <meta property="og:image" content="{{og_image if og_image else 'https://eyeo.c om/images/eyeo-meta-default.png'}}"> | 14 <meta property="og:image" content="{{og_image if og_image else 'https://eyeo.c om/images/eyeo-meta-default.png'}}"> |
8 | 15 |
9 {% if title %} | 16 {% if title %} |
10 <title>{{title}} | eyeo GmbH</title> | 17 <title>{{title}} | eyeo GmbH</title> |
11 {% else %} | 18 {% else %} |
12 <title>eyeo GmbH</title> | 19 <title>eyeo GmbH</title> |
13 {% endif %} | 20 {% endif %} |
14 | 21 |
15 <link rel="shortcut icon" href="/images/favicon.png" /> | 22 <link rel="shortcut icon" href="/images/favicon.png" /> |
16 | 23 |
17 <link rel="stylesheet" href="/css/styles.css" type="text/css" media="all"> | 24 <link rel="stylesheet" href="/css/styles.css" type="text/css" media="all"> |
18 | 25 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
88 </small> | 95 </small> |
89 <div id="footer-links"> | 96 <div id="footer-links"> |
90 {{"contact"|linkify}}Made with ♥ in Cologne</a> | 97 {{"contact"|linkify}}Made with ♥ in Cologne</a> |
91 {{"privacy"|linkify}}Privacy Policy</a> | 98 {{"privacy"|linkify}}Privacy Policy</a> |
92 </div> | 99 </div> |
93 </div> | 100 </div> |
94 </footer> | 101 </footer> |
95 </body> | 102 </body> |
96 | 103 |
97 </html> | 104 </html> |
OLD | NEW |