关注微信公众号(瓠悠笑软件部落),一起学习,一起摸鱼
验证有没有安装 ruby 和 gen
ruby -v
gen -v
安装 jekyll bundler
sudo gen install jekyll bundler
jekyll -v
创建一个工程
jekyll new yourProjectName
启动服务浏览工程
cd yourProjectName/
bundle exec jekyll serve
访问地址就可以看到了:
http://127.0.0.1:4000/
新建_draft文件夹,在里面编写不带日期的 md 文件。编写完后浏览效果
jekyll serve --draft
permallink是header里面用于指定访问路径的属性。
---
layout: post
title: "Welcome to Jekyll!"
date: 2019-02-23 14:21:17 +0800
categories: jekyll update
author: "Kevin"
permalink: /:categories/:year/:month/:day/:title.html
---
这篇博文的URL就是/categories/year/month/day