html – Jekyll默认安装没有_layouts目录

前端之家收集整理的这篇文章主要介绍了html – Jekyll默认安装没有_layouts目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以我按照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

以前在_layouts,_includes和_sass中的初始文件现在与主题一起打包.

原文链接:https://www.f2er.com/html/230909.html

猜你在找的HTML相关文章