Blog小知识

记录Blog用到的Tips

01 启动自己的博客

  • 开启本地博客:hexo s
  • 生成静态文件(例如我自己写好了md,想要上传):hexo g
  • 发布到Githubhexo d
  • 创建新的文章:

02 增加标签与分类页

  • 修改文件所在地址:/themes/next/_config.yml

    • 修改内容:把tagscategories部分的#删除

    • 这里fa fa-tags代表把图标开启

      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
      #schedule: /schedule/ || fa fa-calendar
      #sitemap: /sitemap.xml || fa fa-sitemap
      #commonweal: /404/ || fa fa-heartbeat创建新的`tags`:`hexo new page tags`
  • 创建tags内容:hexo new page tags

    • 修改其内容为:

      1
      2
      3
      title: 标签
      date: 2021-07-20 13:18:58
      type: "tags"
  • 想要设置tag分类时,在md文件头部加上:

    1
    2
    3
    tags:
    - 导航
    - 分享