OLD | NEW |
(Empty) | |
| 1 {# facebook / Open Graph http://ogp.me/ #} |
| 2 <meta property="og:image" content="{{og_image if og_image else '/img/adblockplus
_promo.png'}}"> |
| 3 <meta property="og:title" content="{{ title | translate("title") }}"> |
| 4 {% if description %} |
| 5 <meta property="og:description" content="{{ description | translate("descripti
on") }}"> |
| 6 {% endif %} |
| 7 <meta property="og:locale" content="{{ locale | to_og_locale }}"> |
| 8 {% for alternate_locale in available_locales %} |
| 9 {% if alternate_locale != locale %} |
| 10 <meta property="og:locale:alternate" content="{{ alternate_locale | to_og_lo
cale }}"> |
| 11 {% endif %} |
| 12 {% endfor %} |
| 13 <meta property="og:url" content="{{ config.get("general", "siteurl") }}{{ source
.resolve_link(page | ignore_browsers, locale)[1] }}"> |
| 14 |
| 15 {# twitter https://dev.twitter.com/cards/markup #} |
| 16 <meta name="twitter:site" content="@AdblockPlus"> |
| 17 <meta name="twitter:creator" content="@AdblockPlus"> |
OLD | NEW |