当使用jekyll时,如何将图像添加到前端的数据类型中,因此它会显示在博客文章列表中的标题和日期。
答案 0 :(得分:5)
尝试将图像路径放在前面。
我的意思是,你所有的帖子都是这样的:
---
title: My post
description: My description
image: /img/folder/image.jpg
----
bla bla bla
因此,您可以为每个帖子加载图像。这是一个例子:
---
layout: default
---
{% for post in site.posts %}
<p><h1>{{ post.title }}</h1></p>
<img src="{{ post.image | prepend: site.baseurl }}" alt="{{ post.title }}" title="{{ post.title }}">
{% endfor %}