快速开始
Jekyll 是一个简单、可扩展的静态站点生成器。用你喜欢的标记语言书写内容并交给 Jekyll,它利用模板创建一个静态网站。在整个处理过程中,你可以调整你想要的网址样式、在模板中显示哪些数据等等。
Prerequisites
Jekyll requires the following:
- Ruby version 2.5.0 or higher
- RubyGems
- GCC and Make
See Requirements for guides and details.
操作指南
-
安装全部 需求软件
- 安装Jekyll 和 bundler gems
gem install jekyll bundler
- 在
./myblog
目录下创建一个全新的Jekyll网站jekyll new myblog
- 进入新创建的目录
cd myblog
- 构建网站并启动一个本地web服务
bundle exec jekyll serve
- 在浏览器中打开 http://localhost:4000
If you are using Ruby version 3.0.0 or higher, step 5 may fail. You may fix it by adding webrick
to your dependencies: bundle add webrick
Pass the --livereload
option to serve
to automatically refresh the page with each change you make to the source files: bundle exec jekyll serve --livereload
如果你在上述过程中遇到任何意外错误,请参阅故障排除一节或已经提到的先决条件一节,因为你可能缺少开发用的头文件或其他先决条件。
Installation varies based on your operating system. See our guides for OS-specific instructions.