所以我按照Jekyll网站上的指南安装并运行Jekyll(当然我不必在这里发贴).而且网站运行正常,但由于某些原因我看不到应该在那里的_layouts目录.在页面中,我可以看到它引用了一些布局,即:
的index.html
--- layout: default --- <div class="home">
about.md
--- layout: page title: About permalink: /about/ --- This is the base Jekyll theme.
但是当您查看项目的目录结构时:
没有布局文件夹..这是什么?一切都奏效在localhost上运行时看起来完美无缺.
解决方法
您必须运行最近的Jekyll 3.2版,它介绍了基于Gem的主题(从
https://jekyllrb.com/docs/themes/开始):
Jekyll themes package layouts,includes,and stylesheets in a way that can be overridden by your site’s content.
主题设置在_config.yml中:
theme: minima