Typecho主题Limits

又造了个简单成马咧的主题,分享给大家!

说明

  • 评论采用多说,请自行替换comments.php内容
  • 没有页面导航,因此请在设置-阅读中,将每页文章数目设大一些(例如:999)

预览图:

阅读更多

Ubuntu下安装Ghost博客系统

安装Nodejs

sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs

检查是否安装成功

root@hkvps:~# node -v
v0.10.37
root@hkvps:~# npm -v
1.4.28

安装Ghost

Ghost下载地址https://ghost.org/download/

wget https://ghost.org/zip/ghost-0.6.4.zip
unzip ghost-0.6.4.zip -d ghost
cd ghost
npm install --production

运行Ghost

阅读更多