如何指定图片路径:使用响应式图片插件时要摆在最前面?

时间:2019-06-21 00:03:07

标签: jekyll

我是Jekyll的初学者。我刚刚在我的网站上安装并配置了响应图像插件。

我的_config.yml文件

responsive_image:
  template: _includes/responsive-image.html

我在_includes文件夹中的响应图像.html

{% capture srcset %}
{% for i in resized %}
    /{{ i.path }} {{ i.width }}w,
{% endfor %}
{% endcapture %}

{% assign smallest = resized | sort: 'width' | first %}

<img width="100%" src="/{{ smallest.path }}" alt="{{ alt }}" data-srcset="{{ srcset | strip_newlines }}" class="blur-up lazyautosizes lazyload"> 

要插入图片 我必须在中指定图像路径

{% responsive_image path: assets/images/Rio.jpg %}

有没有其他方法将图像路径插入最前面,而不是像上面那样指定? 因为我打算将我的网站与CMS连接。这样可以轻松添加/更改图像。

如果有人让我知道您对此的想法,那将真的很有帮助。 预先感谢。

0 个答案:

没有答案