-
Notifications
You must be signed in to change notification settings - Fork 1
github Blog
tulpar edited this page Apr 13, 2015
·
1 revision
Date: 2013-11-08 Title: Github上搭博客 Tags: 博客 Category: Life
Github上搭博客
- 在Github上创建工程
- 安装配置pelican和git,以及准备工作
- 开始写博客
注册,配置github的过程略过
sudo pip install pelican
mkdir blog
cd blog
pelican-quickstart
这个时候你会看到blog目录下多了几个Pelican生成的文件,其中的pelicanconf.py就是配置文件
现在,就可以用Pelican开始写博客了,具体怎么写可参看Pelican的文档,这里我用Markdown举例。
Date: 2013-06-06 #日期
Title: My Super Beginng #标题
Tags: Writing, Life #标签
Category: Life #分类
文章内容
cd ..
make html
pelican content
cd content
git init
git add .
git commit -m "first commit"
git remote add origin [email protected]:tulpar008/tulpar008.github.com.git
git push -u origin master
That's all 去访问你的博客吧,我的
git clone git://github.com/getpelican/pelican-themes.git
在里面找到一个你喜欢的主题,假如这个主题的目录是 ~/pelican-themes/bootstrap2 ,
sudo pelican-themes -i ~/pelican-themes/bootstrap2
pelican-themes --list --verbose
THEME = "bootstrap2"
make html