我在myuser.github.io
设置了一个github用户页面repo。我在那里建立了一个常规的html静态网站,效果很好。 (我还设置了一个带有CNAME文件和CNAME DNS记录的自定义域,以便myuser.github.io转到www.example.com)
然后我还在该回购中创建了一个/blog
文件夹,然后我放入了一个jekyll博客模板。
在本地运行jekyll build serve
或bundle exec jekyll serve
没有错误。我可以发布新帖子,它们会显示在localhost:4000/blog/
上。
但是当我将我的博客文件夹推送到github时,会发生以下情况:
b2/css/main.scss
包含语法错误。有关更多信息,请参阅
https://help.github.com/articles/page-build-failed-markdown-errors。" www.example.com/blog/index.html
,我会收到404. 这意味着github由于该错误而吓坏了,并且在它被修复之前不会更新。
我怎样才能弄明白" main.scss"错误是?因为它在当地很好。 我是jekyll(和github页面)的新手,但我尽可能地遵循文档。
这是我的main.scss:
---
layout: null
# Only the main Sass file needs front matter (the dashes are enough)
#http://sassmeister.com/
---
@charset "utf-8";
// Our variables
$base-font-family: "Raleway",Arial,sans-serif;
$base-font-size: 16px;
$small-font-size: $base-font-size * 0.875;
$base-line-height: 1.5;
$spacing-unit: 30px;
$text-color: #111;
$background-color: #fdfdfd;
$brand-color: #2a7ae2;
$grey-color: #828282;
$grey-color-light: lighten($grey-color, 40%);
$grey-color-dark: darken($grey-color, 25%);
$blue-color: #515865;
// Width of the content area
$content-width: 800px;
$on-palm: 600px;
$on-laptop: 800px;
// Using media queries with like this:
// @include media-query($on-palm) {
// .wrapper {
// padding-right: $spacing-unit / 2;
// padding-left: $spacing-unit / 2;
// }
// }
@mixin media-query($device) {
@media screen and (max-width: $device) {
@content;
}
}
// Import partials from `sass_dir` (defaults to `_sass`)
@import
"base",
"layout",
"syntax-highlighting"
;
PS:这是我正在使用的jekyll博客主题:https://github.com/smallmuou/Jekyll-Pithy
答案 0 :(得分:3)
Github页面是从根生成的。如果您将Jekyll放在/blog
文件夹中,则不会发现_setting.yml
,并且可能会混淆scss导入路径。
如果要在本地重现,则必须重新创建相同的文件夹架构并从根目录中激活jekyll serve --trace
,而不是从/ blog。
解决方案是创建一个blog
存储库并将你的jekyll推送到gh-pages
分支。