Total Pageviews

Tuesday, 21 January 2014

在linux vps上搭建基于js的静态博客程序-autoblog(在支持js的普通静态空间里都可搭建)

git clone https://github.com/lodr/AutoBlog autoblog
cd autoblog

as3:~/autoblog# ls
haikus  index.html  lib  README.md  spec  src  stories  style.css  tests.html
as3:~/autoblog#
可见~/autoblog/就是静态网站的根目录。
as3:~/autoblog# nohup Rwebserver 35273 > /dev/null &
访问http://as3.brite.biz:35273/,就可看到网站效果。

发贴方法:
as3:~/autoblog# cd stories
as3:~/autoblog/stories# ls
index                     implemented-features.md                    
introducing-autoblog.md   some-of-the-new-features-coming.md      
as3:~/autoblog/stories# nano test1.md
按introducing-autoblog.md的内容格式,新建帖子test1.md,格式如下:
测试1

这是测试1.
as3:~/autoblog/stories# nano index
在index文件的最上一行,添加test1.md
as3:~/autoblog/stories# cat index
test1.md
introducing-autoblog.md
implemented-features.md
some-of-the-new-features-coming.md

保存index文件后,网站就自动更新了。
可惜的是发表的文章的标题不是超链,这样就没法在外面引用文章了。(文章根本就没有url地址)

演示站点:http://as3.brite.biz:35273/,
项目地址:https://github.com/lodr/AutoBlog

这个项目:https://github.com/KofH/hadron里有stories目录,其实是autoblog的翻版。