diff options
| author | XhmikosR <[email protected]> | 2017-07-16 16:00:40 +0300 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-07-30 16:27:33 -0700 |
| commit | 5f0861f4b85d01581ea727fcdae6f8ed3cfca62f (patch) | |
| tree | f1967316727353b3f47e954b6f8f03ff2a18cc42 | |
| parent | cb8d0e056eb0097279280a39cc95618749527cd3 (diff) | |
| download | bootstrap-5f0861f4b85d01581ea727fcdae6f8ed3cfca62f.tar.xz bootstrap-5f0861f4b85d01581ea727fcdae6f8ed3cfca62f.zip | |
docs: add a few more Open Graph tags.
| -rw-r--r-- | _includes/social.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/_includes/social.html b/_includes/social.html index c488ea610..35bd9fde3 100644 --- a/_includes/social.html +++ b/_includes/social.html @@ -19,12 +19,17 @@ <meta property="og:url" content="{{ site.url }}{{ page.url }}"> <meta property="og:title" content="{{ page.title }}"> <meta property="og:description" content="{{ page.description }}"> + <meta property="og:type" content="website"> {% else %} <meta property="og:url" content="{{ site.url }}"> <meta property="og:title" content="{{ site.title }}"> <meta property="og:description" content="{{ site.description }}"> {% endif %} -<meta property="og:image" content="{{ site.url }}{{ site.social_image_path }}"> +<meta property="og:image" content="{{ site.url | replace: 'https://', 'http://' }}{{ site.social_image_path }}"> +<meta property="og:image:secure_url" content="{{ site.url }}{{ site.social_image_path }}"> +<meta property="og:image:type" content="image/png"> +<meta property="og:image:width" content="1200"> +<meta property="og:image:height" content="630"> <!-- Meta --> <meta name="description" content="{{ site.description }}"> |
