hexo博客搭建
安装hexo
创建新博客
在F:\hexo\code文件夹中使用如下命令
启动服务
在F:\hexo\code目录下使用命令
生成静态文件
在F:\hexo\code目录下使用命令
部署到github.io
把public下面的所有文件都复制到username.github.io项目的根目录
更换主题pacman
下载pacman主题,下载zip压缩包即可
把压缩包下载完成后解压并修改pacman-master为pacman,并把该目录放到F:\hexo\code\themes目录下
修改F:\hexo\code_config.yml文件里的theme为pacman即theme: pacman
(中间空格不能少)
英文改中文
修改F:\hexo\code_config.yml文件里的languagelanguage: zh-CN
修改theme\pacman\layout\index.ejs文件 (这里pacman作者写成字符串了)
修改为
其他类似未修改的地方与此相似,prev,next是在themes\pacman\languages 下面的zh-CN.yml文件里有配置的。
删除文章下面的默认分享
themes\pacman\layout_partial\post\footer.ejs文件里注释掉相关代码即可
pacman代码高亮
在themes/pacman/source/css/_base/variable.styl 文件里注释掉highlight = hexo-config(“highlight.enable”)即可
hexo使用css预处理styl文件
语法简单,使用缩进表示层级关系
rss订阅
安装插件hexo-generator-feed,修改themes/pacman/_config.yml文件的rss,rss: /atom.xml
.
网站地图
安装插件hexo-generator-sitemap.
安装完插件后都要重启服务,重启办法先暂停再启动: ctrl+c
暂停服务,hexo s
启动服务,端口默认4000
百度统计
编辑文件hexo\themes\pacman_config.yml,增加配置选项(中间的空格绝对不能忘):
baidu_tongji: true
新建文件hexo\themes\pacman\layout_partial\baidu_tongji.ejs,内容如下:
注册并登录百度统计获取你的统计代码。
编辑文件hexo\themes\pacman\layout_partial\head.ejs,在『/head』之前增加:
重新生成并部署你的站点。