我想在Craft CMS 2.7模板中使用bootstrap lightbox插件,但是不幸的是我遇到了一个小问题。以最小比例成功渲染了图像,但是当我单击以最大比例时,根本没有图像!
我在资产字段类型中仅使用一张图片
{% for asset in entry.entryImage %}
{% set postimage = asset.url %}
{% endfor %}
<a href=“{{postimage}}” class="thumbnail" data-toggle="imagebox" data-title="Image Title">
<img src="{{postimage}}" alt="{{entry.title}}" width="150" height="100"> </a>
知道我做错了什么吗?
致谢