0%

Hexo添加next主题

进入 blog 目录

cd blog_folder

下载 Next 主题

git clone git@github.com:theme-next/hexo-theme-next.git themes/next

修改/_config.yml

  • 修改主题
    1
    theme: next
  • 修改站点信息
    1
    2
    3
    4
    5
    6
    title:
    subtitle:
    description:
    author: author
    language: zh-CN
    timezone: Asia/Shanghai

修改/theme/next/_config.yml

  • 选择风格

    搜索 scheme,去掉所选风格前的注释

    1
    2
    3
    4
    #scheme: Muse
    #scheme: Mist
    scheme: Pisces
    #scheme: Gemini
  • 设置菜单项及所对应的文件目录

    搜索 menu ,通过注释菜单项来开启或关闭菜单项

    1
    2
    3
    4
    5
    6
    7
    8
    9
    menu:
    home: /|| home
    #about: /about/|| user
    tags: /tags/|| tags
    #categories: /categories/|| th
    #archives: /archives/|| archive # 归档显示错误注释此行
    #schedule: /schedule/|| calendar
    #sitemap: /sitemap.xml|| sitemap
    #commonweal: /404/|| heartbeat

    ||后面的图标
    图标必须为 FontAwesome 网站中存在的图标的名字

  • 创建菜单项对应文件目录,以tags为例

    hexo n page tags

    编辑/source/tags/index.mdtype属性的值写为tags

    1
    2
    3
    4
    5
    ---
    title: tags
    date: 2020-04-10 17:40:53
    type: "tags"
    ---
    • 在新创建的文章中加入 tag

      1
      2
      3
      4
      5
      6
      7
      ---
      title: new_file
      date: 2020-04-11 19:55:31
      tags:
      - tag_1
      - tag_2
      ---
  • 添加头像

    搜索 Avatar,可以用图片链接或本地图片(本地图片需要放在/source/images/下)

    1
    2
    # avatar: http://example.com/avatar.png
    avatar: /images/avatar.jpg
  • 显示浏览进度

    搜索 scrollpercent,值改为true

    1
    scrollpercent: true
  • 侧边栏社交链接

    搜索 social

    1
    2
    3
    social:
    GitHub: https://github.com/luotianqi777 || github
    E-Mail: mailto:luotianqi777@gmail.com || envelope

    ||后为图标,图标必须为 FontAwesome 网站中存在的图标的名字