Jekyll 博客文章未显示在 github 页面上
Jekyll blog posts not showing up on github pages
我使用 Jekyll 构建了我的网站,它在本地按预期运行。但是,当我将我的网站部署到 github pages 时,博客文章不再显示。
我参考了之前的一个问题: ,但是没有解决我的问题
当我在本地执行 bundle exec jekyll serve
时,我收到以下消息
Incremental build: disabled. Enable with --incremental
Generating...
Jekyll Feed: Generating feed for posts
AutoPages: Disabled/Not configured in site.config.
Pagination: Complete, processed 1 pagination page(s)
done in 6.303 seconds.
这似乎表明一切正常。有什么问题?
如果一切正常,您将收到一条消息,其中包含您的服务器 运行afaik 的信息。
例如这是我的消息(注意最后一行):
$ bundle exec jekyll serve
Configuration file: /Users/alexfreik/Documents/GitHub/ltc-webpage/_config.yml
Source: /Users/alexfreik/Documents/GitHub/ltc-webpage
Destination: /Users/alexfreik/Documents/GitHub/ltc-webpage/_site
Incremental build: disabled. Enable with --incremental
Generating...
Jekyll Feed: Generating feed for posts
done in 0.94 seconds.
Auto-regeneration: enabled for '/Users/alexfreik/Documents/GitHub/ltc-webpage'
Server address: http://127.0.0.1:4000/
Server running... press ctrl-c to stop.
你有这个信息吗?
编辑:问题在于分页设置不正确。
我使用 Jekyll 构建了我的网站,它在本地按预期运行。但是,当我将我的网站部署到 github pages 时,博客文章不再显示。
我参考了之前的一个问题:
当我在本地执行 bundle exec jekyll serve
时,我收到以下消息
Incremental build: disabled. Enable with --incremental
Generating...
Jekyll Feed: Generating feed for posts
AutoPages: Disabled/Not configured in site.config.
Pagination: Complete, processed 1 pagination page(s)
done in 6.303 seconds.
这似乎表明一切正常。有什么问题?
如果一切正常,您将收到一条消息,其中包含您的服务器 运行afaik 的信息。
例如这是我的消息(注意最后一行):
$ bundle exec jekyll serve
Configuration file: /Users/alexfreik/Documents/GitHub/ltc-webpage/_config.yml
Source: /Users/alexfreik/Documents/GitHub/ltc-webpage
Destination: /Users/alexfreik/Documents/GitHub/ltc-webpage/_site
Incremental build: disabled. Enable with --incremental
Generating...
Jekyll Feed: Generating feed for posts
done in 0.94 seconds.
Auto-regeneration: enabled for '/Users/alexfreik/Documents/GitHub/ltc-webpage'
Server address: http://127.0.0.1:4000/
Server running... press ctrl-c to stop.
你有这个信息吗?
编辑:问题在于分页设置不正确。