1 安装
1.1 安装pelican
2 写博客
2.1 快速入门
mkdir myblog
cd myblog
pelican-quickstart
在content创建一个2013-11-04-test.md文件
Date: 2013-06-06
Title: My Super Beginning
Slug: my-super-beginning
Tags: Writing, Life
Category: Life
生成页面
pelican content
预览页面
cd output
python -m SimpleHTTPServer 9000
2.2 设置
设置article生成目录,参见文档,在pelicanconf.py中最后一行添加
ARTICLE_URL = 'posts/{date:%Y}/{slug}/'
ARTICLE_SAVE_AS = 'posts/{date:%Y}/{slug}/index.html'
2.3 更改主题
下载安装主题
$ git clone git@github.com:getpelican/pelican-themes.git
$ pelican-themes -i bootstrap2
$ pelican-themes --list --verbose
2.4 添加评论功能
Pelican 使用Disqus评论, 可以在Disqus上申请一个站点, 然后在pelicanconf.py里添加或修改"DISQUS_SITENAME"项的内容为你的Disqus ID :
DISQUS_SITENAME = u"frantic1048"
然后执行
pelican content
2.5 一些插件
待补充
Comments
comments powered by Disqus