/** * 这是一个空白主题的示例 */ const THEME_CONFIG = { THEME: 'blank' } /** * 主题框架 * @param {*} props * @returns */ const LayoutBase = (props) => { const { children } = props return
{children}
} /** * 首页布局 * @param {*} props * @returns */ const LayoutIndex = (props) => { return
hero-page
} const LayoutSearch = () => <> const LayoutArchive = () => <> const LayoutSlug = () => <> const Layout404 = () => <> const LayoutCategory = () => <> const LayoutCategoryIndex = () => <> const LayoutPage = () => <> const LayoutTag = () => <> const LayoutTagIndex = () => <> export { THEME_CONFIG, LayoutIndex, LayoutSearch, LayoutArchive, LayoutSlug, Layout404, LayoutCategory, LayoutCategoryIndex, LayoutPage, LayoutTag, LayoutTagIndex }