2024-11-18 01:09:28 +08:00
|
|
|
import { ThemeConfig } from "contracts/themeContract";
|
2024-11-14 01:44:26 +08:00
|
|
|
|
|
|
|
export const themeConfig: ThemeConfig = {
|
|
|
|
name: 'default',
|
|
|
|
displayName: '默认主题',
|
|
|
|
version: '1.0.0',
|
|
|
|
description: '一个简约风格的博客主题',
|
|
|
|
author: 'lsy',
|
|
|
|
entry: './index.tsx',
|
|
|
|
templates: new Map([
|
|
|
|
['page', {
|
|
|
|
path: './templates/page',
|
|
|
|
name: '文章列表模板',
|
|
|
|
description: '博客首页展示模板'
|
|
|
|
}],
|
|
|
|
]),
|
|
|
|
|
|
|
|
routes: {
|
|
|
|
post: "",
|
|
|
|
tag: "",
|
|
|
|
category: "",
|
|
|
|
page: ""
|
|
|
|
}
|
|
|
|
}
|