2024-12-04 02:35:06 +08:00
|
|
|
import ErrorPage from "hooks/error";
|
2024-12-04 19:57:59 +08:00
|
|
|
import layout from "themes/echoes/layout";
|
2024-12-05 02:13:54 +08:00
|
|
|
import article from "themes/echoes/article";
|
|
|
|
import about from "themes/echoes/about";
|
2024-11-27 01:02:05 +08:00
|
|
|
|
|
|
|
export default function Routes() {
|
2024-12-05 02:13:54 +08:00
|
|
|
const args = {
|
|
|
|
title: "我的页面",
|
|
|
|
theme: "dark",
|
|
|
|
nav: '<a href="h">a</a>'
|
|
|
|
};
|
|
|
|
|
|
|
|
return layout.render({
|
|
|
|
children: article.render(args),
|
|
|
|
args,
|
2024-12-03 01:37:02 +08:00
|
|
|
});
|
2024-11-27 19:52:49 +08:00
|
|
|
}
|