Message Board

Learn how to configure Message Board page for the Solitude theme.

Modifying Theme Configuration

You need to modify the following configuration and customize it according to your needs.

_config.solitude.yml
# Approximately at line 902
# --------------------------- start ---------------------------
# Danmaku Page
# 弹幕留言页面
envelope:
  enable: true
  line: 10 # 显示行数
  speed: 20 # 播放速度
  hover: true # 鼠标悬停暂停
  loop: true # 循环播放
  page: /message/ # 留言板页面 / message board page
# --------------------------- end ---------------------------

Configuring the Page

Open a terminal in the root directory of your Hexo blog and run the following command to create a new page

hexo new page message

This will generate a message folder in the source directory of your blog, containing an index.md file.

Next, add the page type value inside this file.

Reference (modify as needed):

index.md
---
title: Message Board
date: 2025-07-14 19:07:43
type: message
---