GitHub page-Next个人主页优化

参考Hexo-Next-主题优化|Hexo中文文档|Hexo NexT主题中添加网页音乐播放器功能

1. 常用命令

//Hexo的命令极简单,安装后只需要记住四个常用的即可。执行命令需要Git当前处于blog文件夹根目录下。
generate 生成静态文件。
hexo g

//server 启动服务器。
hexo s

//deploy 部署网站。部署网站前,需要预先生成静态文件。
hexo d

//clean 清除缓存文件 (db.json) 和已生成的静态文件 (public)。
hexo clean

//卸载Hexo
npm uninstall hexo-cli -g

2.更换主题,以Next主题为例

$ cd your-hexo-site
$ git clone https://github.com/iissnan/hexo-theme-next themes/next

修改Hexo 站点目录下的_config.yml的主题

# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
theme: next

3.站点初始设置(使用sublime打开save with encoding UTF-8)

Site

title: Hexo #网站标题
subtitle: #网站副标题
description: #网站描述
author: author #您的名字
language: zh-Hans #网站使用的语言(不写会导致中文乱码,或者使用sublime text编辑自动转码)
timezone: Asia/Shanghai #网站时区。Hexo 默认使用您电脑的时区。

打开Hexo 站点目录下的_config.yml修改内容如下

4.设置主题风格

  • 打开themes/next下的_config.yml文件,搜索 scheme关键字,将你需用启用的scheme 前面注释 # 去除即可。
# ---------------------------------------------------------------
# Scheme Settings
# ---------------------------------------------------------------

# Schemes
#scheme: Muse # 默认 Scheme,这是 NexT 最初的版本,黑白主调,大量留白
#scheme: Mist # Muse 的紧凑版本,整洁有序的单栏外观
scheme: Pisces # 双栏 Scheme,小家碧玉似的清新
#scheme: Gemini # 类似 Pisces

5.设置菜单项的显示文本和图标

  • 更新说明:NexT.Pisces v5.1.3, 版本更换了修改菜单图标方式。参看详细信息,感谢@花谢为谁泣
image
  • NexT 使用的是 Font Awesome 提供的图标, Font Awesome 提供了 600+ 的图标,可以满足绝大的多数的场景,同时无须担心在 Retina 屏幕下 图标模糊的问题。
5.1设置菜单项的显示文本
  • 打开themes/next/languages下的zh-Hans.yml文件,搜索 menu关键字,修改对应中文或者新增
menu:
  home: 首页
  archives: 归档
  categories: 分类
  tags: 标签
  about: 关于
  search: 搜索
  schedule: 日程表
  sitemap: 站点地图
  commonweal: 公益404
  # 新增menu
  catalogue: 目录

5.2设定菜单项的图标
  • 打开themes/next下的_config.yml文件,搜索 menu_icons关键字,修改对应图标名称或者新增对应menu的图标
# Enable/Disable menu icons.
# Icon Mapping:
#   Map a menu item to a specific FontAwesome icon name.
#   Key is the name of menu item and value is the name of FontAwesome icon. Key is case-senstive.
#   When an question mask icon presenting up means that the item has no mapping icon.
menu_icons:
  enable: true
  #KeyMapsToMenuItemKey: NameOfTheIconFromFontAwesome
  home: home
  about: user
  categories: th
  schedule: calendar
  tags: tags
  archives: archive
  sitemap: sitemap
  commonweal: heartbeat
  #新增menu_icon
  catalogue: th-list

5.3设置菜单项对应的文件目录
  • 打开themes/next下的_config.yml文件,搜索 menu关键字,以#注释原有的菜单项,或者新增新的菜单项
# ---------------------------------------------------------------
# Menu Settings
# ---------------------------------------------------------------

# When running the site in a subdirectory (e.g. domain.tld/blog), remove the leading slash (/archives -> archives)
menu:
  home: /
  categories: /categories/
  #about: /about/
  archives: /archives/
  #tags: /tags/
  #sitemap: /sitemap.xml
  #commonweal: /404/
  #新增menu
  catalogue: /catalogues/

  • 除了homearchives,/后面都需要手动创建这个页面
5.4创建菜单项对应文件目录,以分类为例
  • 在终端窗口下,定位到 Hexo 站点目录下。使用 hexo new page 新建一个页面,命名为 categories :
$ cd your-hexo-site
$ hexo new page categories

5.5编辑刚新建的页面,设置分类
title: 分类
date: 2014-12-22 12:39:04
categories: Testing #分类名
type: "categories"
---

你可能感兴趣的:(GitHub page-Next个人主页优化)