- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试构建我的 github.io 页面时,我收到了这个错误。
A file was included in /_layouts/default.html that is a symlink or does not exist in your _includes directory.
最佳答案
这意味着您在 _layouts/default.html
中有一个链接引用一个不存在的文件。
检查_layouts/default.html
:
<!DOCTYPE html>
<html>
{% include head.html %}
<body id="page-top" class="index">
{% include nav.html %}
{% include header.html %}
{% include portfolio_grid.html %}
{% include about.html %}
{% if site.contact == "static" %}
{% include contact_static.html %}
{% elsif site.contact == "disqus" %}
{% include contact_disqus.html %}
{% else %}
{% include contact.html %}
{% endif %}
{% include footer.html %}
{% include modals.html %}
{% include js.html %}
</body>
</html>
included
文件必须位于
_includes
目录:
contact_disqus.html
不见了。
关于github-pages -/_layouts/default.html 中包含一个符号链接(symbolic link)文件或在您的 _includes 目录中不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59673507/
如何在 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
我是一名优秀的程序员,十分优秀!