使用 Ekinosoba来打造hexo博客
1.安装hexo
确保您已经安装node.js和git
测试安装:
2.安装Ekinosoba
1 2 3 4
| $ pwd
$ cd themes $ git clone https://github.com/oldhelps/ekinosoba.git
|
3.配置Ekinosoba和hexo
在./__config.yml(站点配置文件)里改动:
1 2 3 4 5 6
| title: Hexo subtitle: '' author: John Doe language: en timezone: ''
|
在themes/ekinosoba/__config.yml里更改导航栏、友情链接和社交网站地址:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| menu: - name: Home slug: home url: / - name: Archives slug: archives url: /archives - name: Categories slug: categories url: /categories - name: Tags slug: tags url: /tags - name: About slug: about url: /about
widgets: - about - links - categories - tagcloud
social: - slug: github url: https://github.com/oldhelps
hero_image: 2.png hero_title: 老帮帮的博客 hero_subtitle: 老帮帮的博客。
author: name: 老帮帮 bio : Tempora mutantur, nos et mutamur in illis ...djkadj
|