mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Simplify social.html. (#24483)
This also fixes the wrong usage of `site.description` instead of `page.description` in meta description.
This commit is contained in:
parent
c70eaa156f
commit
3b75ebff2b
2 changed files with 12 additions and 28 deletions
|
@ -1,5 +1,7 @@
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
|
<meta name="description" content="{{ page.description | default: site.description }}">
|
||||||
|
<meta name="author" content="{{ site.authors }}">
|
||||||
<meta name="generator" content="Jekyll v{{ jekyll.version }}">
|
<meta name="generator" content="Jekyll v{{ jekyll.version }}">
|
||||||
|
|
||||||
<title>
|
<title>
|
||||||
|
|
|
@ -1,36 +1,18 @@
|
||||||
<!-- Meta -->
|
|
||||||
<meta name="description" content="{{ site.description }}">
|
|
||||||
<meta name="author" content="{{ site.authors }}">
|
|
||||||
|
|
||||||
<!-- Twitter -->
|
<!-- Twitter -->
|
||||||
|
<meta name="twitter:card" content="{% if page.title %}summary{% else %}summary_large_image{% endif %}">
|
||||||
<meta name="twitter:site" content="@{{ site.twitter }}">
|
<meta name="twitter:site" content="@{{ site.twitter }}">
|
||||||
<meta name="twitter:creator" content="@{{ site.twitter }}">
|
<meta name="twitter:creator" content="@{{ site.twitter }}">
|
||||||
|
<meta name="twitter:title" content="{{ page.title | default: site.title }}">
|
||||||
{% if page.title %}
|
<meta name="twitter:description" content="{{ page.description | default: site.description }}">
|
||||||
<meta name="twitter:card" content="summary">
|
<meta name="twitter:image" content="{% if page.title %}{{ site.url | append: site.social_logo_path }}{% else %}{{ site.url | append: site.social_image_path }}{% endif %}">
|
||||||
<meta name="twitter:title" content="{{ page.title }}">
|
|
||||||
<meta name="twitter:description" content="{{ page.description }}">
|
|
||||||
<meta name="twitter:image" content="{{ site.url }}{{ site.social_logo_path }}">
|
|
||||||
{% else %}
|
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
|
||||||
<meta name="twitter:title" content="{{ site.title }}">
|
|
||||||
<meta name="twitter:description" content="{{ site.description }}">
|
|
||||||
<meta name="twitter:image" content="{{ site.url }}{{ site.social_image_path }}">
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<!-- Facebook -->
|
<!-- Facebook -->
|
||||||
{% if page.title %}
|
<meta property="og:url" content="{{ site.url | append: page.url }}">
|
||||||
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
|
<meta property="og:title" content="{{ page.title | default: site.title }}">
|
||||||
<meta property="og:title" content="{{ page.title }}">
|
<meta property="og:description" content="{{ page.description | default: site.description }}">
|
||||||
<meta property="og:description" content="{{ page.description }}">
|
<meta property="og:type" content="website">
|
||||||
<meta property="og:type" content="website">
|
<meta property="og:image" content="{{ site.url | replace: 'https://', 'http://' | append: site.social_image_path }}">
|
||||||
{% else %}
|
<meta property="og:image:secure_url" content="{{ site.url | append: site.social_image_path }}">
|
||||||
<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 | 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:type" content="image/png">
|
||||||
<meta property="og:image:width" content="1200">
|
<meta property="og:image:width" content="1200">
|
||||||
<meta property="og:image:height" content="630">
|
<meta property="og:image:height" content="630">
|
||||||
|
|
Loading…
Reference in a new issue