1

将 Jekyll 与 Github Pages 一起使用,当我在 Twitter 上分享帖子时,Twitter Card 中不会显示任何图像。

我使用 Jekyll-seo-tag,但是在 Front Matter 中添加图像标签时它不起作用,当我转到相应的 URL 时,我得到的是 404 而不是帖子。

我尝试了什么:

---
layout: post
title:  "lorem ispum - Week 22 of 2018"
subtitle: "An inside look at ...."
date:   2018-06-04 17:00:00
authors: [ John Doe ]
icon: icon-calendar
tags:
 - core-weekly
image: /assets/images/2017/04/...
---
4

1 回答 1

1

发现了问题。

image标签不应位于 Front Matter 的最后一个位置。

当我把它放在中间它工作时,我在 Twitter 卡上得到了图像。

见下文:

---
layout: post
title:  "lorem ispum - Week 22 of 2018"
subtitle: "An inside look at ...."
date:   2018-06-04 17:00:00
authors: [ John Doe ]
image: /assets/images/2017/04/...
icon: icon-calendar
tags:
 - core-weekly
---
于 2019-07-10T12:23:59.927 回答