Skip to content
本页目录

创建页面

Hexo 框架在初始状态下并没有自动生成 Categories(分类)、Tags(标签)、Links(友链)、About(关于)等页面,这些都是需要自己先手动创建,再配置使用。

以创建「 About(关于) 」页面为例:

  1. 在 Hexo 项目根目录下使用如下命令,即可创建 about 页面。

    bash
    cd your-hexo
    hexo new page about
  2. 创建成功后,会在 your-hexo/source/ 目录下自动生成 about/index.md 文件。
    我们在 about/index.md 文件里编写 about(关于) 的具体内容。
    支持 Markdown 和 HTML 格式。

    • 示例:

      markdown
      ---
      title: about
      date: 2020-03-19 14:59:53
      comment: true
      ---
      
      # About me
      
      ## About me
      
      <div style="color: red;">About me</div>
    • 效果图:

      image

    提示

    comment: true 表示该页面开启评论功能(默认关闭)。

  3. 在主题配置文件 _config.yml (或者 keep.yml) 中启用 about 导航菜单。

    yaml
    menu:
      Home: /
      About: /about
      # ...

其他页面的创建方式跟「 About(关于)」页面类似,此处不再赘述。

Released under the AGPL-3.0 License