hexo-next-gitalk

站点搭建过程

  • hexo : 快速、简洁且高校的博客框架
  • next : Hexo主题
  • gitalk : 依靠GitHub issue的评论系统

Settings & Tips

  • Show descripion

    1
    2
    3
    4
    5
    # 修改themes/next/_config.yml
    excerpt_description: true

    # 文章截断
    <!--more-->
  • 字数统计

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    # 安装插件 hexo-symbols-count-time
    $ npm install hexo-symbols-count-time

    # 修改hexo配置文件_config.yml
    # Symbols count and time to read of articles for Hexo.
    symbols_count_time:
    symbols: true
    time: true
    total_symbols: true
    total_time: true

    # 修改Next配置文件
    # Post wordcount display settings
    # Dependencies: https://github.com/next-theme/hexo-word-counter
    symbols_count_time:
    separated_meta: true
    item_text_post: true
    item_text_total: false
    awl: 4
    wpm: 275