Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: includes/meta/social.tmpl

Issue 29469558: Issue 5329 - Optimize website-boilerplate for sharing on social media networks (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Separated open graph and twitter fields Created June 21, 2017, 12:23 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | includes/meta/standard.tmpl » ('j') | includes/meta/standard.tmpl » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_type
22 # : Page type (e.g. website, article)
23 #
24 # og_site_name
25 # : A short name 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 # twitter_site
37 # : A twitter username associated with the site (not page)
38 #
39 # twitter_image_alt
40 # : A text description of the nature of the featured image for search engines
41 # and the visually impaired (max 420 characters)
42 #}
43
44 <!-- open graph -->
45
46 {% if host and page %}
47 <meta property="og:url" content="{{ host }}/{{ page }}">
juliandoucette 2017/06/21 12:30:02 @Vasily and/or @Jon I need `protocol://host.domain
juliandoucette 2017/06/21 15:20:45 Done. https://issues.adblockplus.org/ticket/5343
48 {% endif %}
49 {% if og_type %}
50 <meta property="og:type" content="{{ og_type }}">
51 {% endif %}
52 {% if og_site_name %}
53 <meta property="og:site_name" content="{{ og_site_name }}">
54 {% endif %}
55 {% if og_title %}
56 <meta property="og:title" content="{{ og_title }}">
57 {% endif %}
58 {% if og_description %}
59 <meta property="og:descirption" content="{{ og_description }}">
60 {% endif %}
61 {% if og_image %}
62 <meta property="og:image" content="{{ og_image }}">
63 {% else if og_site_image %}
64 <meta property="og:image" content="{{ og_site_image }}">
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 %}
72
73 <!-- twitter -->
74
75 {% if twitter_site %}
76 <meta name="twitter:site" content="@{{ twitter_site }}">
77 {% endif %}
78 {% if twitter_card %}
79 <meta name="twitter:card" content="{{ twitter_card }}">
80 {% else if og_image or og_site_image %}
81 <meta name="twitter:card" content="summary_large_image">
82 {% else %}
83 <meta name="twitter:card" content="summary">
84 {% endif %}
85 {% if twitter_image_alt %}
86 <meta name="twitter:image:alt" content="{{ twitter_image_alt }}">
87 {% endif %}
OLDNEW
« no previous file with comments | « no previous file | includes/meta/standard.tmpl » ('j') | includes/meta/standard.tmpl » ('J')

Powered by Google App Engine
This is Rietveld