OLD | NEW |
(Empty) | |
| 1 {# |
| 2 # This file is part of the website-defaults, |
| 3 # Copyright (C) 2017 eyeo GmbH |
| 4 # |
| 5 # website-defaults is free software: you can redistribute it and/or modify |
| 6 # it under the terms of the GNU General Public License version 3 as |
| 7 # published by the Free Software Foundation. |
| 8 # |
| 9 # website-defaults is distributed in the hope that it will be useful, |
| 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 # GNU General Public License for more details. |
| 13 # |
| 14 # You should have received a copy of the GNU General Public License |
| 15 # along with website-defaults. If not, see <http://www.gnu.org/licenses/>. |
| 16 # |
| 17 # --- |
| 18 # |
| 19 # # Essential meta data for sharing on social media |
| 20 # |
| 21 # og:site |
| 22 # : A short name associated with the site (not page) |
| 23 # |
| 24 # twitter:site |
| 25 # : A twitter username associated with the site (not page) |
| 26 # |
| 27 # og:title |
| 28 # : A clear title without branding or mentioning the domain itself |
| 29 # |
| 30 # og:description |
| 31 # : A clear description, at least two sentences long |
| 32 # |
| 33 # og:image |
| 34 # : Featured image (at least 1200x630, up to 5MB) |
| 35 #} |
| 36 {% if og_site_name %} |
| 37 <meta property="og:site_name" content="{{ og_site_name }}"> |
| 38 {% endif %} |
| 39 {% if twitter_site %} |
| 40 <meta name="twitter:site" content="@{{ twitter_site }}"> |
| 41 {% endif %} |
| 42 {% if og_title %} |
| 43 <meta property="og:title" content="{{ og_title }}"> |
| 44 {% endif %} |
| 45 {% if og_description %} |
| 46 <meta property="og:descirption" content="{{ og_description }}"> |
| 47 {% endif %} |
| 48 {% if og_image %} |
| 49 <meta property="og:image" content="{{ og_image }}"> |
| 50 {% else if og_site_image %} |
| 51 <meta property="og:image" content="{{ og_site_image }}"> |
| 52 {% endif %} |
| 53 {% if twitter_card %} |
| 54 <meta name="twitter:card" content="{{ twitter_card }}"> |
| 55 {% else if og_image or og_site_image %} |
| 56 <meta name="twitter:card" content="summary_large_image"> |
| 57 {% else %} |
| 58 <meta name="twitter:card" content="summary"> |
| 59 {% endif %} |
| 60 {% if twitter_image_alt %} |
| 61 <meta name="twitter:image:alt" content="{{ twitter_image_alt }}"> |
| 62 {% endif %} |
| 63 {% if host and page %} |
| 64 <meta property="og:url" content="{{ host }}/{{ page }}"> |
| 65 {% endif %} |
| 66 <meta property="og:locale" content="{{ locale }}"> |
| 67 {% for alternate_locale in locales %} |
| 68 {% if alternate_locale != locale %} |
| 69 <meta property="og:locale:alternate" content="{{ alternate_locale }}"> |
| 70 {% endif %} |
| 71 {% endfor %} |
OLD | NEW |