fix: better image support for blog posts
This commit is contained in:
@@ -10,12 +10,12 @@
|
||||
<meta property="og:description" content="{{ description }}">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
|
||||
<meta property="og:image" content="{{ image }}">
|
||||
<meta property="og:image" content="{{ site.url }}{{ image }}">
|
||||
<!-- Twitter Card Meta Tags -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="{{ title }}">
|
||||
<meta name="twitter:description" content="{{ description }}">
|
||||
<meta name="twitter:image" content="{{ image }}">
|
||||
<meta name="twitter:image" content="{{ site.url }}{{ image }}">
|
||||
<!-- Structured Data (JSON-LD) -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
@@ -23,7 +23,7 @@
|
||||
"@type": "BlogPosting",
|
||||
"headline": "{{ title }}",
|
||||
"description": "{{ description }}",
|
||||
"image": "{{ image }}",
|
||||
"image": "{{ site.url }}{{ image }}",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "{{ site.author.name }}"
|
||||
|
Reference in New Issue
Block a user