LEFT | RIGHT |
1 {# open graph #} | 1 {# |
| 2 # This file is part of website-defaults |
| 3 # Copyright (C) 2016-2017 eyeo GmbH |
| 4 # |
| 5 # website-defaults is free software: you can redistribute it and/or |
| 6 # modify it under the terms of the GNU General Public License as published by |
| 7 # the Free Software Foundation, either version 3 of the License, or |
| 8 # (at your option) any later version. |
| 9 # |
| 10 # website-defaults is distributed in the hope that it will be useful, |
| 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 # GNU General Public License for more details. |
| 14 # |
| 15 # You should have received a copy of the GNU General Public License |
| 16 # along with website-defaults. If not, see <http://www.gnu.org/licenses/>. |
| 17 #} |
2 | 18 |
3 {% if host and page %} | 19 {% macro meta_tag(property, content, defaultContent=None) -%} |
4 <meta property="og:url" content="{{ host }}/{{ page }}"> | 20 {% if content %} |
5 {% endif %} | 21 <meta property="{{ property }}" content="{{ content }}"> |
6 {% if og_type %} | 22 {% elif defaultContent %} |
7 <meta property="og:type" content="{{ og_type }}"> | 23 <meta property="{{ property }}" content="{{ defaultContent }}"> |
8 {% endif %} | 24 {% endif %} |
9 {% if og_site_name %} | 25 {%- endmacro %} |
10 <meta property="og:site_name" content="{{ og_site_name }}"> | 26 |
11 {% endif %} | 27 {% set social_media_meta = [ |
12 {% if og_title %} | 28 ('og:url', og_url, get_canonical_url(page)), |
13 <meta property="og:title" content="{{ og_title }}"> | 29 ('og:type', og_type, 'website'), |
14 {% endif %} | 30 ('og:site_name', og_site_name, get_string('site-name', 'global') if has_string
('site-name', 'global') else None), |
15 {% if og_description %} | 31 ('og:title', og_title, title | translate('page-title', 'Meta data') if title e
lse None), |
16 <meta property="og:description" content="{{ og_description }}"> | 32 ('og:description', og_description, description | translate('page-description',
'Meta data') if description else None), |
17 {% endif %} | 33 ('og:image', og_image, image), |
18 {% if og_image %} | 34 ('og:image:alt', og_image_alt, image_alt), |
19 <meta property="og:image" content="{{ og_image }}"> | 35 ('og:locale', og_locale, locale | to_og_locale), |
20 {% else if og_site_image %} | 36 ('fb:app_id', facebook_id, None), |
21 <meta property="og:image" content="{{ og_site_image }}"> | 37 ('twitter:site', twitter_site, '@eyeo'), |
22 {% endif %} | 38 ('twitter:card', twitter_card, 'summary_large_image' if og_image or twitter_im
age or image else 'summary'), |
23 <meta property="og:locale" content="{{ locale }}"> | 39 ('twitter:image', twitter_image, None), |
24 {% for alternate_locale in locales %} | 40 ('twitter:image:alt', twitter_image_alt, None), |
| 41 ('p:domain_verify', pinterest_id, None), |
| 42 ] %} |
| 43 |
| 44 {% for property, content, defaultContent in social_media_meta %} |
| 45 {{ meta_tag(property, content, defaultContent) }} |
| 46 {% endfor %} |
| 47 |
| 48 {% for alternate_locale in available_locales %} |
25 {% if alternate_locale != locale %} | 49 {% if alternate_locale != locale %} |
26 <meta property="og:locale:alternate" content="{{ alternate_locale }}"> | 50 {{ meta_tag(('og:locale:alternate', alternate_locale | to_og_locale)) }} |
27 {% endif %} | 51 {% endif %} |
28 {% endfor %} | 52 {% endfor %} |
29 | |
30 {# facebook #} | |
31 | |
32 {% if facebook_id %} | |
33 <meta property="fb:app_id" content="{{ facebook_id }}"> | |
34 {% endif %} | |
35 | |
36 {# twitter #} | |
37 | |
38 {% if twitter_site %} | |
39 <meta name="twitter:site" content="@{{ twitter_site }}"> | |
40 {% endif %} | |
41 {% if twitter_card %} | |
42 <meta name="twitter:card" content="{{ twitter_card }}"> | |
43 {% else if og_image or og_site_image %} | |
44 <meta name="twitter:card" content="summary_large_image"> | |
45 {% else %} | |
46 <meta name="twitter:card" content="summary"> | |
47 {% endif %} | |
48 {% if twitter_image_alt %} | |
49 <meta name="twitter:image:alt" content="{{ twitter_image_alt }}"> | |
50 {% endif %} | |
51 | |
52 {# pintrist #} | |
53 | |
54 {% if pintrist_id %} | |
55 <meta name="p:domain_verify" content="{{ pintrist_id }}"> | |
56 {% endif %} | |
LEFT | RIGHT |