-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.json
1 lines (1 loc) · 3.48 KB
/
content.json
1
{"pages":[],"posts":[{"title":"Hello World","text":"Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment","link":"/2024/09/02/hello-world/"},{"title":"安装、部署与主题更换指南","text":"一、Hexo 安装指南1. 环境准备在安装 Hexo 之前,请确保你的系统上已经安装了 Node.js 和 npm。你可以通过以下命令检查它们的版本: 12node -vnpm -v 2. 安装 Hexo打开终端(或命令提示符),并运行以下命令来全局安装 Hexo: 1npm install -g hexo-cli 3. 创建一个新的 Hexo 博客在你希望创建博客的目录下,运行以下命令来初始化一个新的 Hexo 项目: 123hexo init myblogcd myblognpm install 这将创建一个新的 myblog 文件夹,并在其中安装 Hexo 所需的依赖包。 二、部署到 GitHub Pages1. 配置部署插件在 Hexo 项目根目录下,找到并编辑 _config.yml 文件,添加以下部署配置: 1234deploy: type: git repo: https://github.com/你的用户名/你的仓库名.git branch: main # 或者你要部署的其他分支 2. 安装部署插件如果你还没有安装 Hexo 的 Git 部署插件,可以通过以下命令安装: 1npm install hexo-deployer-git --save 3. 生成静态文件并部署运行以下命令生成静态文件并将其部署到 GitHub Pages: 123npx hexo cleannpx hexo generatenpx hexo deploy 4. 配置 GitHub Pages前往你的 GitHub 仓库,点击页面顶部的 “Settings” 选项卡。在 “Pages” 部分,选择你用于部署的分支(如 main 或 gh-pages),并保存更改。你将会看到你的博客网址,通过这个网址你可以访问你的博客。 三、更换 Hexo 主题1. 查找和下载主题你可以在 Hexo 主题市场 找到各种 Hexo 主题。选择一个你喜欢的主题并下载。以 Anatolo 主题为例,你可以通过以下命令克隆主题到你的 Hexo 项目中: 1git clone https://github.com/你的用户名/hexo-theme-anatolo.git themes/anatolo 2. 配置主题在 Hexo 项目根目录下,找到并编辑 _config.yml 文件,将 theme 设置为你下载的主题名称,例如: 1theme: anatolo 3. 安装主题依赖有些主题可能需要额外的 npm 包。进入主题目录并安装相关依赖: 12cd themes/anatolonpm install 4. 生成并查看效果运行以下命令生成静态文件并启动 Hexo 本地服务器: 12npx hexo generatenpx hexo server 打开浏览器访问 http://localhost:4000,你将看到你的新主题效果。记得在本地查看并调整主题配置,以确保博客的外观符合你的需求。 总结通过以上步骤,你可以轻松地安装 Hexo 博客框架,将其部署到 GitHub Pages,并更换主题来定制你的博客外观。Hexo 提供了灵活且强大的功能,让你能够快速创建并管理你的博客。希望这篇文章对你有所帮助,祝你在 Hexo 博客的旅程中一切顺利!","link":"/2024/09/03/%E5%AE%89%E8%A3%85%E3%80%81%E9%83%A8%E7%BD%B2%E4%B8%8E%E4%B8%BB%E9%A2%98%E6%9B%B4%E6%8D%A2%E6%8C%87%E5%8D%97/"}],"tags":[{"name":"Hexo,部署,主题","slug":"Hexo,部署,主题","link":"/tags/Hexo%EF%BC%8C%E9%83%A8%E7%BD%B2%EF%BC%8C%E4%B8%BB%E9%A2%98/"}],"categories":[]}