Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: includes/meta/standard.tmpl

Issue 29630648: Issue 6013 - Add site name to document title in website-defaults standard metadata (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Remove translation on get_string Created Dec. 11, 2017, 3:34 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | pages/index.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <meta charset="utf-8"> 1 <meta charset="utf-8">
2 <meta http-equiv="x-ua-compatible" content="ie=edge"> 2 <meta http-equiv="x-ua-compatible" content="ie=edge">
3 <meta name="viewport" content="width=device-width, initial-scale=1"> 3 <meta name="viewport" content="width=device-width, initial-scale=1">
4 4
5 {% if title_exclude_sitename or not has_string("name", "site") %} 5 {% if title_suffix == 'none' or (not title_suffix and not has_string("name", "si te")) %}
juliandoucette 2017/12/12 16:52:45 suggest: <title> {{ title | translate("title",
ire 2017/12/12 18:37:13 Ack. I'm assuming you removed the `title_suffix ==
6 <title>{{ title | translate("page-title", "Page title") }}</title> 6 <title>
juliandoucette 2017/12/12 16:38:32 There is no reason to repeat the opening and closi
ire 2017/12/12 18:37:13 Acknowledged. I did it this way because I think it
7 {% else %} 7 {{ title | translate("page-title", "Page title") }}
8 <title>{{ title | translate("page-title", "Page title") }} | {{ get_string("name ", "site") }}</title> 8 </title>
9 {% elif title_suffix %}
10 <title>
11 {{ title | translate("page-title", "Page title") }} |
12 {{ title_suffix | translate("custom-page-title-suffix", "Page title suffix") } }
13 </title>
14 {% elif has_string("name", "site") %}
15 <title>
16 {{ title | translate("page-title", "Page title") }} |
17 {{ get_string("name", "site") }}
18 </title>
9 {% endif %} 19 {% endif %}
10 20
11 {% if description %} 21 {% if description %}
12 <meta name="description" content="{{ description | translate("page-description ", "Page description") }}"> 22 <meta name="description" content="{{ description | translate("page-description ", "Page description") }}">
13 {% endif %} 23 {% endif %}
14 <link rel="canonical" href="{{ get_canonical_url(page) }}"> 24 <link rel="canonical" href="{{ get_canonical_url(page) }}">
OLDNEW
« no previous file with comments | « no previous file | pages/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld