安装 局部安装(npx) 报错:这个报错暂时没解决,不过不影响
$ npm install hexo npm warn deprecated cuid@2.1.8 : Cuid and other k-sortable and non-cryptographic ids (Ulid, ObjectId, KSUID, all UUIDs) are all insecure. Use @paralleldrive/cuid2 instead.
https://www.npmjs.com/package/@paralleldrive/cuid2
https://github.com/paralleldrive/cuid2
创建博客 进入博客目录 删除 yarn.lock 文件 如果不删除,vscode 有提醒,后面都用 npm 安装
删除 .git 或 .github 文件夹 安装 npm 包 新建完成后,指定文件夹目录下有: node_modules: 依赖包目录 public: 编译后的目录 scaffolds:生成文章的一些模板 source:用来存放你的文章 themes:主题目录 _config.yml: 项目配置文件
开启服务器 测试环境 http://localhost:4000/
查看
这个刚开始会有一个提示:没找到 favicon 网站图标图片
这个安装新主题之后就好了
生成静态文件 根目录下 public
文件夹里的内容就是最终要部署的代码
个性化设置 (初级) 更换主题 1 git clone https://github.com/next-theme/hexo-theme-next themes/next
注意:
NexT 主题有两个分支【老仓库 新仓库 】,强烈建议安装新仓库 老仓库更新在 N 年前,新仓库一直在更新 为什么会创建新仓库 站点配置 项目配置文件,Site
配置项(注意冒号后面要有空格) 1 2 3 4 5 6 7 8 title: Wong's Blog subtitle: '' description: '' keywords: author: Charles Wong language: zh-CN timezone: 'Asia/Shanghai'
完善博客页面 添加菜单 主题配置文件,将 menu
配置项中需要添加的菜单前面的注释去掉即可(如需要添加其他菜单可按需添加,注意缩进): 1 2 3 4 5 6 7 8 9 menu: home: / || fa fa-home about: /about/ || fa fa-user tags: /tags/ || fa fa-tags categories: /categories/ || fa fa-th archives: /archives/ || fa fa-archive
创建 “分类” 页面 1 npx hexo new page categories
编辑刚新建的页面 /source/categories/index.md
,将页面的类型设置为 categories
,主题将自动为这个页面显示所有分类(注意保留冒号后的空格)。 1 2 3 4 5 6 --- title: 分类 date: 2024-10-30 23:37:56 type: "categories" comments: false ---
创建 “标签云” 页面 1 npx hexo new page "tags"
编辑刚新建的页面,将页面的类型设置为 tags
,主题将自动为这个页面显示标签云。 1 2 3 4 5 6 --- title: 标签 date: 2024-10-30 23:40:07 type: "tags" comments: false ---
创建 “关于我” 页面 1 npx hexo new page "about"
编辑刚新建的页面,可在正文处用 Markdown 格式写下信息。 1 2 3 4 5 --- title: 关于博主 date: 2024-10-31 00:42:57 comments: false ---
设置侧边栏社交链接 项目配置文件, social
配置项,添加社交站点名称与地址即可。键值格式为 显示名称: 链接地址
,例如: 1 2 3 4 5 6 7 8 9 10 11 12 13 social: GitHub: https://github.com/ws-2024 || fab fa-github
创建文章 执行如下命令,会在 source/_posts
文件夹内生成一个 .md
格式文件。 1 2 3 4 5 6 7 title 文章的标题 date 创建日期 (文件的创建日期 ) updated 修改日期 ( 文件的修改日期) comments 是否开启评论 true tags 标签 categories 分类 permalink url中的名字(文件名)
删除文章 具体方法如下:
首先进入到 source/_post
文件夹中 找到相应文件,删除即可 添加分类及标签 参考文章
1 2 3 4 5 6 --- title: jQuery对表单的操作及更多应用 date: 2017-05-26 12:12:57 categories: - web前端 ---
1 2 3 4 5 6 7 8 9 10 --- title: jQuery对表单的操作及更多应用 date: 2017-05-26 12:12:57 categories: - web前端 tags: - jQuery - 表格 - 表单验证 ---
标签和分类不是单独定义的,是在文章里定义的。
个性化设置 (高级) 设置侧边栏头像 根目录下 source
文件夹下新建文件夹,命名为 uploads
, 将头像图片(如: avatar.jpg )放到该文件夹内
打开 themes/next/_config.yml
,找到 avatar
配置项并修改:
1 2 3 4 avatar: url: /uploads/avatar.jpg rounded: true rotated: true
修改代码块样式 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 codeblock: theme: light: stackoverflow-dark dark: stackoverflow-dark prism: light: prism dark: prism-dark copy_button: enable: true style: mac fold: enable: true height: 500
设定站点建立时间 改进文章链接样式 编辑文件 themes/next/source/css/_common/components/post/post.styl
,在末尾添加如下 css 样式: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 .post-body p a ,.post-body blockquote a ,.post-body li a { color : #0593d3 !important ; border-bottom : none; border-bottom : 1px solid #0593d3 !important ; &:hover { color : #fc6423 !important ; border-bottom : none; border-bottom : 1px solid #fc6423 !important ; } }
给博客增加背景图 主题配置文件, custom_file_path
配置项(设置自定义样式文件的路径,原理是利用自定义样式文件中的样式覆盖掉默认样式): 参考文章
1 2 3 4 5 6 7 8 9 10 11 custom_file_path: style: source/_data/styles.styl
根目录 source
文件夹下创建 _data
文件夹,新建 styles.styl
文件,打开新建的文件 source/_data/styles.styl
,添加如下内容: 1 2 3 4 5 6 7 8 9 body { background :url (/uploads/background.jpg); background-repeat : no-repeat; background-attachment :fixed; background-size : cover; background-position :50% 50% ; }
url 中可以是图片链接,或者是图片目录。可以将图片命名为 background.jpg
,并放入 source/uploads
文件夹内。 博客内容背景设置半透明 打开上一步编辑的文件 source/_data/styles.styl
,新增如下内容: 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 if (hexo-config ('motion.transition.post_block' )) { .post-block { background : rgba (255 ,255 ,255 ,0.9 ); opacity : 0.9 ; radius: 10px ; padding : 40px ; -webkit-box-shadow : 0 0 5px rgba (202 , 203 , 203 , .5 ); -moz-box-shadow : 0 0 5px rgba (202 , 203 , 204 , .5 ); } .pagination , .comments { opacity : 0 ; } +tablet () { margin : 20px ; padding : 10px ; } +mobile () { margin : 15px ; padding : 15px ; } } .sidebar { opacity : 0.9 ; } .header-inner { background : rgba (255 ,255 ,255 ,0.9 ); } .popup { opacity : 0.9 ; }
优化行内代码块的样式 打开上一步编辑的文件 source/_data/styles.styl
,继续新增如下内容: 1 2 3 4 5 6 7 8 9 code { padding : 2px 4px ; word-wrap : break-word; color : #c7254e ; background : #f9f2f4 ; border-radius : 3px ; font-size : 18px ; }
首页文章间距调整 我用外观是 Mist,所以修改文件内容:theme/next/source/css/_schemes/Mist/_posts-expand.styl
1 2 3 4 .post-block :not (:first-child) { margin-top : 66px ; }
默认的 120px 改成 66px
首页第一篇文章的内外边距
编辑文件 themes/next/source/css/_variables/Mist.styl
: 1 2 3 4 5 6 $content -padding-top = 66px ;$content -padding-bottom = 80px ;$posts -first-padding = 40px ;$posts -first-padding -mobile = 30px ;
编辑文件 themes/next/source/css/_schemes/Muse/_layout.styl
: 1 2 3 4 5 6 7 8 9 10 .main-inner { main-container (); padding-top : $content -padding-top; padding-bottom : $content -padding-bottom; +mobile () { padding-left : 20px ; padding-right : 20px ; } }
首页只显示文章标题 文件 themes/next/layout/_macro/post.njk
,68 行修改: 1 <p class="myDesign">{{ post.description }}</p>
文章详情页隐藏描述,上面的也需要 css 样式结合,在自定义样式中加入如下代码: 1 2 3 4 .post-description ,.myDesign { display :none; }
前提,文章需要添加 description
配置项
给文章标题加编号 参考文章
自定义样式中加入如下代码:
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 body { counter-reset : h2counter; }h2 { counter-reset : h3counter; }h3 { counter-reset : h4counter; }h4 { counter-reset : h5counter; }h5 { counter-reset : h6counter; }h6 { }.post-body h2 :before { counter-increment : h2counter; content : counter (h2counter) ".\0000a0\0000a0" ; } .post-body h3 :before { counter-increment : h3counter; content : counter (h2counter) "." counter (h3counter) ".\0000a0\0000a0" ; } .post-body h4 :before { counter-increment : h4counter; content : counter (h2counter) "." counter (h3counter) "." counter (h4counter) ".\0000a0\0000a0" ; } .post-body h5 :before { counter-increment : h5counter; content : counter (h2counter) "." counter (h3counter) "." counter (h4counter) "." counter (h5counter) ".\0000a0\0000a0" ; } .post-body h6 :before { counter-increment : h6counter; content : counter (h2counter) "." counter (h3counter) "." counter (h4counter) "." counter (h5counter) "." counter (h6counter) ".\0000a0\0000a0" ; }
修改引用块的左边框颜色 1 2 3 4 blockquote { border-left-color : #c49ce1 ; }
版权声明 主题配置文件, creative_commons
配置项: 1 2 3 4 5 creative_commons: license: by-nc-sa sidebar: false post: true language:
注意: 版权的链接在项目配置文件中的 url 配置项指定 默认是 url: http://example.com
文章进度显示 1 2 3 4 5 6 back2top: enable: true sidebar: false scrollpercent: true
站内搜索 1 npm install hexo-generator-searchdb
1 2 3 4 5 6 search: path: search.json field: post format: html limit: 10000
主题配置文件, local_search
配置项: 1 2 local_search: enable: true
防止谷歌浏览器提醒
如果 form 表单标签里没加 name 或者 id 属性,会有提醒:
A form field element has neither an id nor a name attribute.
现在取消这个提醒
主题目录下 layout/_partials/search/localsearch.swig
文件input
标签添加一个 name
或 id
属性即可。
字数统计 参考文章
1 npm install hexo-symbols-count-time
1 2 3 4 5 6 7 8 9 symbols_count_time: symbols: true time: true total_symbols: false total_time: false exclude_codeblock: false awl: 3 wpm: 275 suffix: "mins."
需要重新启动本地环境或者重新编译
底部文本居中 scheme: Mist
这里的底部文字默认居左的,没有对应的配置项,只能自定义样式参考文章
1 2 3 4 .footer-inner { text-align : center; }
压缩代码体积 参考文章
1 npm install hexo-all-minifier --save
1 2 3 4 5 6 7 8 { "overrides" : { "got" : "^14.4.4" , "semver-regex" : "^4.0.5" , "trim-newlines" : "^5.0.0" , "highlight.js" : "^11.10.0" } }
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 all_minifier: true js_concator: enable: false bundle_path: '/js/bundle.js' front: false silent: false html_minifier: enable: true ignore_error: false silent: false exclude: css_minifier: enable: true silent: false exclude: - "*.min.css" js_minifier: enable: true mangle: true silent: false output: compress: exclude: - "*.min.js" image_minifier: enable: true interlaced: false multipass: false optimizationLevel: 2 pngquant: false progressive: false silent: false
文章链接优化 参考文章
1 npm install hexo-abbrlink --save
1 2 3 4 5 6 7 8 permalink: posts/:abbrlink.html permalink_defaults: pretty_urls: trailing_index: true trailing_html: true abbrlink: alg: crc32 rep: hex
上面配置完了,url 是根据算法随机生成的 加 posts
的好处:编译完成后会把文章都放在 public/posts
文件夹,方便管理
自定义 URL,在文章配置里加入 abbrlink
配置项,就可以指定当前文章的 URL 地址了 上面加完之后,完整的地址就是 domain/posts/your_blog_url.html 当然 your_blog_url
这个值最好是数字字母,不要有汉字 自定义 URL 是可选的,文章链接优化一定要做,为了下面评论系统做铺垫
Github Pages 部署 1 2 3 4 deploy: type: git repository: https://github.com/your-name/your-name.github.io.git branch: main
1 npm install hexo-deployer-git --save
在这个过程中需要 Github 账号授权
自定义域名 参考
购买域名,推荐 namesilo ,经济实惠。 DNS 解析先解析 @
,A 类型,解析 4 个 IP185.199.108.153 185.199.109.153 185.199.110.153 185.199.111.153 再解析 www
,CNAME 类型,解析到 <user>.github.io
域名验证,所在仓库 -> 设置 (settings)->Custom domain,填入买的域名等待 DNS 检测 当出现 DNS check successful
的时候,说明检测成功 检测成功后,刷新页面,勾选 Enforce HTTPS
,强制 HTTPS这个过程中,需要等一会儿,Github Pages 的服务器会去申请免费的 SSL 证书。 如果成功,刷新页面后,将出现 Your site is live at https://yourdomain/
重要 DNS 检测成功后,Github Pages 会在该仓库根目录创建一个 CNAME 的文件,文件内容就是买的域名 可以把这个文件下载下来,放到本地项目 source
目录中,下次推送就没问题了 如果不弄这一步的话,下一次推送后将无法访问自定义域名 如果忘记这一步的话,而且还推送了… 就需要重新进入该仓库设置页面,进行 DNS 检测… 正常情况下,如果访问 www 域名,会自动跳转到 apex 域。
开启访问统计 1 2 busuanzi_count: enable: true
修改模板内容 themes/next/layout/_partials/footer.njk
1 2 本站访客数 <span id="busuanzi_value_site_uv"></span> 人次 本站总访问量 <span id="busuanzi_value_site_pv"></span> 次
Giscus 评论系统 参考文章
注意:要做之前的文章链接优化,否则后面有坑 确保仓库是公开的(public) 仓库安装 giscus (GitHub App),选择对应的 repo
,不要选 所有
仓库开启 Discussions 功能Settings -> General -> Features -> Discussions
获取配置 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <script src ="https://giscus.app/client.js" data-repo ="仓库名" data-repo-id ="仓库 ID" data-category ="Announcements" data-category-id ="分类 ID" data-mapping ="pathname" data-strict ="0" data-reactions-enabled ="1" data-emit-metadata ="1" data-input-position ="top" data-theme ="light" data-lang ="zh-CN" data-loading ="lazy" crossorigin ="anonymous" async > </script >
重点: data-repo
、 data-repo-id
、data-categories
、data-category-id
1 npm install hexo-next-giscus
人家仓库里点名了,就是要用 next 新仓库地址,我也是从老仓库过来的,踩了很多坑!注意: 如果你在测试这个插件的时候出现了这个报错Error: Unable to call `next_data`, which is undefined or falsey
那就是你的版本不对,马上更新到 v8+
版本吧!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 giscus: enable: false repo: repo_id: category: Announcements category_id: mapping: pathname strict: 0 reactions_enabled: 1 emit_metadata: 1 theme: light lang: zh-CN input_position: top loading: lazy
基本上是参照上面的配置得来的建议:关闭 pjax 注意:
如果当前页面有人留言了,那就会展示别人的留言 如果当前页面没人留言,对于留言请求会返回 404(正常情况) 当且仅当有一个人登录 GitHub 留言,就会有记录,下次就可以正常展示留言了 1 2 3 4 5 6 7 8 9 10 11 if (hexo-config ('motion.transition.post_block' )) { .post-block , .comments .giscus-container { background : rgba (255 ,255 ,255 ,0.9 ); opacity : 0.9 ; border-radius : 10px ; padding : 40px ; -webkit-box-shadow : 0 0 5px rgba (202 , 203 , 203 , .5 ); -moz-box-shadow : 0 0 5px rgba (202 , 203 , 204 , .5 ); } }
注意:这个需要参照上面 博客内容背景设置半透明
,写到 if
条件中
国内可访问 众所周知,Github Pages 在国内的访问巨慢,有些时候根本不能访问,所以要找一个 DNS 代理商 找了一圈,就用 Cloudflare 吧
注册链接 填写域名、域名解析(4 个 @
,1 个 www
) 域名商更改 NS
地址(CF 给提供的) 等待 5-10 分钟左右,ping 域名检查 IP 是否改变如果改变了,说明 DNS 修改成功 如果 IP 没变,继续等… 问题:域名重定向过多(如果出现)【参考 】CF -> SSL/TLS 加密模式切换为:完全(严格)
404 页面 直接在该仓库根目录创建一个 404.html 即可。【参考 】 还需要把这个 404 页面放到本地项目的主题文件夹 themes/next/source
中 添加 README.md 在项目目录 source
目录下,新建 README.md 文件 项目配置文件 skip_render
配置项 1 skip_render: ['README.md' ]
常用插件 常用命令 1 2 3 4 5 6 7 8 # 完整写法: hexo generate ,根据源文件生成静态网页 hexo g # 完整写法: hexo deploy ,发布推送到 GitHub Pages hexo d # 完整写法: hexo server ,本地部署测试 hexo s # 清空静态网页 cache ,然后 hexo d 重新生成 hexo clean
备用 本地环境 false busuanzi_count
主题配置文件giscus
项目配置文件all_minifier
项目配置文件找错 参考文章