共计 806 个字符,预计需要花费 3 分钟才能阅读完成。
Github 设置
注册后登录 Github,点击“Creat a new repo”,版本库名使用 ’username.github.io’ 的格式,这里将 username 替换成自己的用户名即可。
安装 Python、Pelican 和 Markdown
yum install python
pip install pelican
pip install markdown http://wowubuntu.com/markdown/
创建博客骨架
搭建博客目录:mkdir blog; cd blog; pelican-quickstart。
进入 output 文件夹,把 username.github.io 版本库 clone 下来:cd output; git clone https://github.com/username/u…。
设置上传部署到 Github,修改根目录下的 Makefile 文件:
OUTPUTDIR=$(BASEDIR)/output/username.github.io
publish:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
github: publish
cd OUTPUTDIR ; git add . ; git commit -am ‘your comments’ ; git push
定制博客
设置 pelicanconf.py。
导航目录项
MENUITEMS = ((“ITEM1″,”http://github.com”),(“ITEM2”,URL), ……)。
安装主题
安装主题:git clone https://github.com/getpelican…;cd pelican-themes;pelican-themes -i bootstrap2。
设置主题:THEME = ‘bootstrap2’。
推荐主题:Elegant http://oncrashreboot.com/eleg…。