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 {% elif title %} | 30 ('og:site_name', og_site_name, get_string('site-name', 'global') if has_string
('site-name', 'global') else None), |
15 <meta property="og:title" content="{{ title }}"> | 31 ('og:title', og_title, title | translate('page-title', 'Meta data') if title e
lse None), |
16 {% endif %} | 32 ('og:description', og_description, description | translate('page-description',
'Meta data') if description else None), |
17 {% if og_description %} | 33 ('og:image', og_image, image), |
18 <meta property="og:description" content="{{ og_description }}"> | 34 ('og:image:alt', og_image_alt, image_alt), |
19 {% elif description %} | 35 ('og:locale', og_locale, locale | to_og_locale), |
20 <meta property="og:description" content="{{ description }}"> | 36 ('fb:app_id', facebook_id, None), |
21 {% endif %} | 37 ('twitter:site', twitter_site, '@eyeo'), |
22 {% if og_image %} | 38 ('twitter:card', twitter_card, 'summary_large_image' if og_image or twitter_im
age or image else 'summary'), |
23 <meta property="og:image" content="{{ og_image }}"> | 39 ('twitter:image', twitter_image, None), |
24 {% elif og_site_image %} | 40 ('twitter:image:alt', twitter_image_alt, None), |
25 <meta property="og:image" content="{{ og_site_image }}"> | 41 ('p:domain_verify', pinterest_id, None), |
26 {% endif %} | 42 ] %} |
27 <meta property="og:locale" content="{{ locale }}"> | 43 |
28 {% for alternate_locale in locales %} | 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 %} |
29 {% if alternate_locale != locale %} | 49 {% if alternate_locale != locale %} |
30 <meta property="og:locale:alternate" content="{{ alternate_locale }}"> | 50 {{ meta_tag(('og:locale:alternate', alternate_locale | to_og_locale)) }} |
31 {% endif %} | 51 {% endif %} |
32 {% endfor %} | 52 {% endfor %} |
33 | |
34 {# facebook #} | |
35 | |
36 {% if facebook_id %} | |
37 <meta property="fb:app_id" content="{{ facebook_id }}"> | |
38 {% endif %} | |
39 | |
40 {# twitter #} | |
41 | |
42 {% if twitter_site %} | |
43 <meta name="twitter:site" content="@{{ twitter_site }}"> | |
44 {% endif %} | |
45 {% if twitter_card %} | |
46 <meta name="twitter:card" content="{{ twitter_card }}"> | |
47 {% elif og_image or og_site_image %} | |
48 <meta name="twitter:card" content="summary_large_image"> | |
49 {% else %} | |
50 <meta name="twitter:card" content="summary"> | |
51 {% endif %} | |
52 {% if twitter_image_alt %} | |
53 <meta name="twitter:image:alt" content="{{ twitter_image_alt }}"> | |
54 {% endif %} | |
55 | |
56 {# pinterest #} | |
57 | |
58 {% if pinterest_id %} | |
59 <meta name="p:domain_verify" content="{{ pinterest_id }}"> | |
60 {% endif %} | |
LEFT | RIGHT |