init game theme

This commit is contained in:
tangly1024.com
2024-03-18 18:57:49 +08:00
parent fc3e60e94c
commit ff77d30cae
41 changed files with 2366 additions and 0 deletions

15
themes/game/config.js Normal file
View File

@@ -0,0 +1,15 @@
const CONFIG = {
GAME_NAV_NOTION_ICON: true, // 是否读取Notion图标作为站点头像 ; 否则默认显示黑色SVG方块
// 特殊菜单
GAME_MENU_RANDOM_POST: true, // 是否显示随机跳转文章按钮
GAME_MENU_SEARCH_BUTTON: true, // 是否显示搜索按钮该按钮支持Algolia搜索
// 默认菜单配置 开启自定义菜单后以下配置则失效请在Notion中自行配置菜单
GAME_MENU_CATEGORY: false, // 显示分类
GAME_MENU_TAG: true, // 显示标签
GAME_MENU_ARCHIVE: false, // 显示归档
GAME_MENU_SEARCH: true, // 显示搜索
GAME_MENU_RSS: false // 显示订阅
}
export default CONFIG