从零开始打造程序员的个人博客

2016-01-13  本文已影响1081人  isJia

Jekyll的文件和目录结构

所有的配置文件都是基于YAML格式的。

_config.yml

name:  "A Jekyll Blog"
description:  “Jekyll Tutorial by Example"
url: “http://localhost:4000” #这里与你的域名保持一致,注意没有末尾的/,本地可暂时使用http://localhost:4000
paginate: 10
markdown: rdiscount
permalink: pretty
pygments: true #可选,需要提前安装pigments

_include 文件夹

_layouts文件夹

_posts文件夹

第一次运行

内容填充

---
title: Hello, World!  
---

自动生成

重点:主题制作

下载Bootstrap

创建一个布局

Liquid Template System

调用layout

使用Includes

创建一个边栏

编写Blog

遍历post loops

Main Loop

添加筛选条件,Filters

博文页面,post content pages

post layout

分页

创建一个aboutme的静态页面

完成

原文链接:http://isjia.me/tech/2014/12/16/Jekyll-Tutorial-by-Example/
翻译自: https://www.andrewmunsell.com/tutorials/jekyll-by-example/tutorial

上一篇下一篇

猜你喜欢

热点阅读