Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 config.has_option("general", "sitename") == Fals e %} | 5 {% if title_exclude_sitename or not has_string("name", "site") %} |
Vasily Kuznetsov
2017/11/30 12:53:28
The second part of this condition can be written a
ire
2017/11/30 13:20:00
I like your suggestion better.
Done.
| |
6 <title>{{ title | translate("page-title", "Page title") }}</title> | 6 <title>{{ title | translate("page-title", "Page title") }}</title> |
7 {% else %} | 7 {% else %} |
8 <title>{{ title | translate("page-title", "Page title") }} | {{ config.get("gene ral", "sitename") }}</title> | 8 <title>{{ title | translate("page-title", "Page title") }} | {{ get_string("name ", "site") }}</title> |
9 {% endif %} | 9 {% endif %} |
10 | 10 |
11 {% if description %} | 11 {% if description %} |
12 <meta name="description" content="{{ description | translate("page-description ", "Page description") }}"> | 12 <meta name="description" content="{{ description | translate("page-description ", "Page description") }}"> |
13 {% endif %} | 13 {% endif %} |
14 <link rel="canonical" href="{{ get_canonical_url(page) }}"> | 14 <link rel="canonical" href="{{ get_canonical_url(page) }}"> |
LEFT | RIGHT |