未显示帖子的功能图片Jekyll
我正在构建一个Jekyll站点,并希望在帖子显示页面上显示feature-imgs。我以为自己的Front方向正确,文件路径正确,但由于某种原因,图像仍然不显示。未显示帖子的功能图片Jekyll
前面的问题
--- layout: post
title: My Coding Journey
feature-img: "/img/journey.png"
---
我的图片名为IMG项目根文件夹中。
邮政布局:
--- layout: post-header
---
<article {% if page.feature-img %} class="feature-image"{% endif %}>
<section class="post-content">{{ content }}</section>
</article>
<!-- Disqus -->
{% if site.theme_settings.disqus_shortname %}
<div class="comments">
{% include disqus.html %}
</div>
{% endif %}
任何想法,为什么特征图像不工作。
回答:
您需要一个img
标记才能呈现图像。
--- layout: post
title: My Coding Journey
feature-img: "/img/journey.png"
---
,并在布局...
<article> {% if page.feature-img %}
<img class="feature-image" src={{ page.feature-img }} alt="Feature Image"/>
{% endif %}
<section class="post-content">{{ content }}</section>
</article>
以上是 未显示帖子的功能图片Jekyll 的全部内容, 来源链接: utcz.com/qa/260322.html