博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
基于Github Page 搭建博客(hexo框架)
阅读量:5876 次
发布时间:2019-06-19

本文共 1181 字,大约阅读时间需要 3 分钟。

Demo:

搭建

  • 前置:

初始博客环境

cnpm i -g hexo-clihexo initcnpm install复制代码

配置博客参数

./_config.yml//部署(提交)模式# Deployment## Docs: https://hexo.io/docs/deployment.htmldeploy:  type: git  repo: git@github.com:kunlingou/kunlingou.github.io.git  branch: masterhexo s //启动服务复制代码

部署(提交到git)

cnpm i -S hexo-deployer-githexo cleanhexo g -d //生成后部署hexo generate  hexo deploy 复制代码

关联域名

  • 参考
  • 新建CNAME文件
./source/CNAMEwww.kunlingou.club复制代码
  • 部署服务

问题

  1. 无法访问googleapis相关链接jquery.min.js
    .\themes\landscape\layout\_partial\after-footer.ejs
    ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js替换为libs.baidu.com/jquery/2.0.3/jquery.min.js
hexo cleanhexo g -d复制代码
  1. 主题(NexT)
    参考文档:
./git clone https://github.com/theme-next/hexo-theme-next themes/next./_config.yml# Extensions## Plugins: https://hexo.io/plugins/## Themes: https://hexo.io/themes/# theme: landscapetheme: next复制代码
  • next
    git clone https://github.com/theme-next/hexo-theme-next themes/next

  • replica
    git clone git@github.com:sabrinaluo/hexo-theme-replica.git themes/replica

使用

hexo常用命令

hexo n "XXX"//新建文章hexo g -d //生成静态文件,生成后部署hexo s //启动本地服务器hexo clean //清除缓存文件db.json和生成文件./public/复制代码

option

hexo --safe //安全模式hexo --debug //调试模式hexo --silent //静默模式复制代码

转载地址:http://riuix.baihongyu.com/

你可能感兴趣的文章
jquery css3问卷答题卡翻页动画效果
查看>>
MDK5.00中*** error 65: access violation at 0xFFFFFFFC : no 'write' permission的一种解决方法
查看>>
Android 集成支付宝支付详解
查看>>
SQL分布式查询、跨数据库查询
查看>>
C#------连接SQLServer和MySQL字符串
查看>>
Arcgis Licensemanager 不能启动的原因之一(转载)
查看>>
(原)Android在子线程用handler发送的消息,主线程是怎么loop到的?
查看>>
$digest already in progress 解决办法——续
查看>>
虚拟机 centos设置代理上网
查看>>
Struts2中Date日期转换的问题
查看>>
mysql 数据类型
查看>>
Ubuntu 设置当前用户sudo免密码
查看>>
设置tomcat远程debug
查看>>
android 电池(一):锂电池基本原理篇【转】
查看>>
Total Command 常用快捷键
查看>>
ionic 调用手机的打电话功能
查看>>
怎么使用阿里云直播服务应用到现在主流直播平台中
查看>>
Xcode全局替换内容,一键Replace
查看>>
1000 加密算法
查看>>
exif_imagetype() 函数在linux下的php中不存在
查看>>