Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 {# | 1 {# |
2 # This file is part of the website-defaults, | 2 # This file is part of the website-defaults, |
3 # Copyright (C) 2017 eyeo GmbH | 3 # Copyright (C) 2017 eyeo GmbH |
4 # | 4 # |
5 # website-defaults is free software: you can redistribute it and/or modify | 5 # website-defaults is free software: you can redistribute it and/or modify |
6 # it under the terms of the GNU General Public License version 3 as | 6 # it under the terms of the GNU General Public License version 3 as |
7 # published by the Free Software Foundation. | 7 # published by the Free Software Foundation. |
8 # | 8 # |
9 # website-defaults is distributed in the hope that it will be useful, | 9 # website-defaults is distributed in the hope that it will be useful, |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 # GNU General Public License for more details. | 12 # GNU General Public License for more details. |
13 # | 13 # |
14 # You should have received a copy of the GNU General Public License | 14 # You should have received a copy of the GNU General Public License |
15 # along with website-defaults. If not, see <http://www.gnu.org/licenses/>. | 15 # along with website-defaults. If not, see <http://www.gnu.org/licenses/>. |
16 # | 16 # |
17 # --- | 17 # --- |
18 # | 18 # |
19 # # Essential meta data for all websites | 19 # # Essential meta data for all websites |
20 # | 20 # |
21 # ## title | 21 # ## title |
22 # | 22 # |
23 # Optimal format | 23 # Optimal format |
24 # : Primary Keeyword - Secondary Keyword | Brand Name | 24 # : Primary Keyword - Secondary Keyword | Brand Name |
ire
2017/06/21 11:39:29
Typo in "Keeyword"
juliandoucette
2017/06/21 12:05:01
Done.
| |
25 # | 25 # |
26 # Optimal length | 26 # Optimal length |
27 # : 50-60 characters (600px wide on desktop) | 27 # : 50-60 characters (600px wide on desktop) |
28 # | 28 # |
29 # Fallback | 29 # Fallback |
30 # : First highest level heading | 30 # : First highest level heading |
31 # | 31 # |
32 # Nuance | 32 # Nuance |
33 # : Titles are user facing, therefore it's important that they are readable. | 33 # : Titles are user facing, therefore it's important that they are readable. |
34 # But they must also be very compact. Full scentences, punctuation, and | 34 # But they must also be very compact. Full scentences, punctuation, and |
(...skipping 16 matching lines...) Expand all Loading... | |
51 # directly weighted by popular search engines) in less than 160 characters. | 51 # directly weighted by popular search engines) in less than 160 characters. |
52 #} | 52 #} |
53 <meta charset="utf-8"> | 53 <meta charset="utf-8"> |
54 <meta http-equiv="x-ua-compatible" content="ie=edge"> | 54 <meta http-equiv="x-ua-compatible" content="ie=edge"> |
55 <meta name="viewport" content="width=device-width, initial-scale=1"> | 55 <meta name="viewport" content="width=device-width, initial-scale=1"> |
56 {% if title %} | 56 {% if title %} |
57 <title>{{ title | translate("page-title", "Meta page title") }}</title> | 57 <title>{{ title | translate("page-title", "Meta page title") }}</title> |
58 {% endif %} | 58 {% endif %} |
59 {% if description %} | 59 {% if description %} |
60 <meta name="description" content="{{ description | translate("page-description ", "Meta page description") }}"> | 60 <meta name="description" content="{{ description | translate("page-description ", "Meta page description") }}"> |
61 {% endif %} | 61 {% endif %} |
juliandoucette
2017/06/21 15:28:48
Looks like we're missing alternate links! :O
Are
juliandoucette
2017/06/22 18:27:43
In Rietveld only individual people make sense. But
ire
2017/07/04 09:03:00
Should the html5shiv and other IE-related scripts
juliandoucette
2017/07/04 10:05:27
- I think it's a best practice to group link and s
ire
2017/07/04 13:27:50
I think (:P) you're right. I didn't necessarily me
juliandoucette
2017/07/04 14:49:29
In that case: Yes.
| |
LEFT | RIGHT |