- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 Jekyll 项目中有一个 _includes
目录,该目录中的一个 .html 文件需要引用 _includes
之外的图标目录中的图像,例如,
{% include img/icons/facebook.svg %}
Jekyll编译失败,提示找不到该目录。我可以将图像添加到 _includes
目录中,但如果可能的话我宁愿不这样做。有谁知道这是否可以做到?
谢谢!
最佳答案
要在include中包含图像,我们可以直接用HTML引用它们,不需要使用include
标签,所以在include
代码中你只需使用:
<img src="/img/icons/facebook.svg">
或者如果您想要完整路径:
<img src={{"/img/icons/facebook.svg"|absolute_url}}>
这里的问题在于 include
标签的使用,它的意思是:
include the content from another file
不包含文件。
关于include - Jekyll - "include"在 "_includes"目录之外找不到引用文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44331726/
如何在 lodash 中传递数组? users = [{ name: 'aaa', age: 22 },{ name: 'bbb', age: 33 }
我是 Jekyll 和网络编程的新手。我一直在四处寻找我遇到的特定问题的一些答案,但没有找到。如果他们在那里,他们一定有我不知道的名字。 关于我的新 Jekyll 站点的几个问题: 我正在尝试使用 _
我的 Jekyll 项目中有一个 _includes 目录,该目录中的一个 .html 文件需要引用 _includes 之外的图标目录中的图像,例如, {% include img/icons/fa
我想将页面标题的哈希链接引入网页的菜单中。该网页是使用 Jekyll 生成的,其默认布局如下所示: {% include head.html %} {% include head
我的计划是在 _includes 目录中放置文件夹: _includes/页脚 _includes/英雄 _includes/cta 等... 当我引用 {% include footers/foot
当我尝试构建我的 github.io 页面时,我收到了这个错误。 A file was included in /_layouts/default.html that is a symlink or
我是一名优秀的程序员,十分优秀!