Skip to content

Jekyll 从入门到放弃

方跃明 2022-12-15

各种不习惯,严重受虐,从入门到放弃只需一周。 Hugo 和 Hexo 别笑了,你俩半斤八两,五十步笑百步。

准备环境

Jekyll 基于 Ruby,需要搭建 Ruby 环境。

Windows

macOS

macOS 一般自带 Ruby ,若没有则需要安装

shell
brew install ruby

快速开始

shell
gem install jekyll bundler
jekyll new my-awesome-site
cd my-awesome-site
bundle install
bundle exec jekyll serve
# => 打开浏览器 http://localhost:4000

模板引擎

模板引擎基于 Liquid

WEB
博客系统