主题简介
MiHo 是一款单栏响应式的Hexo主题;这里以Miho主题为例,更多官方主题
安装主题
1
| $ git clone https://github.com/WongMinHo/hexo-theme-miho.git themes/miho
|
MiHo 主题需要Hexo 3.0或以上版本,请先升级。
站点配置
1.启用主题
站点配置文件_config.yml在hexo根目录下。找到theme,注意有空格
2.网站基本配置
查看更多
3.jsonContent 配置
生成站点文章静态数据,用于站内搜索。
1
| npm install hexo-generator-json-content --save
|
详细的配置请查看hexo-generator-json-content
主题配置
编辑主题配置文件,themes/miho/_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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
| favicon: /favicon.ico keywords: Iris header_title: Iris header_description: Keep walking logo: images/author.jpg banner_img: images/banner.jpg menu: home: title: Home url: / target: false archive: title: Archives url: /archives target: false user: title: About url: / target: false social: home: title: Iris url: //irisjiao.github.io target: true github: title: Github url: //github.com/Irisjiao target: true weibo: title: Weibo url: //weibo.com/u/2376532325 target: true excerpt_length: 190 excerpt_link: more>> open_new_link: false cover_picture: images/banner.jpg open_bg_particle: false open_animation: true toc: true style: main_color: '#0cc' changyan_appid: false changyan_appkey: false disqus: false cnzz_analytics: false baidu_analytics: false google_analytics: false access_counter: on: true site_uv: 总访客数: site_pv: 总访问量: copyright: 2017 MinHow
|