我以前从未安装过Jekyll,这是我第一次。
我经历了安装xcode的过程,安装了ruby版本3.2.1,安装了jekyll版本3.2.1。所有这些都是在最近两天内安装完毕的
当我去localhost:4000时,我得到了默认的jekyll页面的内容,但没有一个样式。它看起来像这样:
Unstyled Default Jekyll Page
这是文件结构的样子,自安装以来我根本没有更改任何文件。 File Structure
当我检查页面时,它将此作为其css链接:
<link rel="stylesheet" href="http://example.com/css/main.css">我不知道如何继续。任何人都可以帮助我吗?
答案 0 :(得分:1)
css有点乱,因为_config.yml中的域是错误的。你可以删除示例网址,它会很好地工作。
应该是这样的。
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site
如果您有域名,则可以更新。
<强>更新强>
如下面的评论中所述,现在修复并在Jekyll 3.3.0中默认设置。
当您生成新网站时,css应正确链接,_config.yml
的相关部分将如下所示:
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com