 Issue 29622568:
  Issue 6013 - Add site name to document title in website-defaults standard metadata  (Closed) 
  Base URL: https://hg.adblockplus.org/website-defaults
    
  
    Issue 29622568:
  Issue 6013 - Add site name to document title in website-defaults standard metadata  (Closed) 
  Base URL: https://hg.adblockplus.org/website-defaults| Left: | ||
| Right: | 
| OLD | NEW | 
|---|---|
| 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 | |
| 5 {% if page == "index" or config.get("general", "sitename") is not defined %} | |
| 
ire
2017/11/28 09:12:49
This currently doesn't work because if I try "conf
 
juliandoucette
2017/11/28 14:49:21
I don't think that the index page will be the only
 
juliandoucette
2017/11/28 14:49:21
I think that this is how to find the answer to you
 
ire
2017/11/28 16:11:26
Alright, thanks!
 
ire
2017/11/28 16:11:26
Acknowledged.
 | |
| 4 <title>{{ title | translate("page-title", "Page title") }}</title> | 6 <title>{{ title | translate("page-title", "Page title") }}</title> | 
| 7 {% else %} | |
| 8 <title>{{ title | translate("page-title", "Page title") }} | {{ config.get("gene ral", "sitename") }}</title> | |
| 9 {% endif %} | |
| 10 | |
| 5 {% if description %} | 11 {% if description %} | 
| 6 <meta name="description" content="{{ description | translate("page-description ", "Page description") }}"> | 12 <meta name="description" content="{{ description | translate("page-description ", "Page description") }}"> | 
| 7 {% endif %} | 13 {% endif %} | 
| 8 <link rel="canonical" href="{{ get_canonical_url(page) }}"> | 14 <link rel="canonical" href="{{ get_canonical_url(page) }}"> | 
| OLD | NEW |