2024-07-03 02:35:01 +00:00
|
|
|
import { Hono } from 'hono';
|
|
|
|
import { jsxRenderer, useRequestContext } from 'hono/jsx-renderer';
|
|
|
|
import { Page } from '@blog/templates/Page';
|
2024-07-04 00:56:54 +00:00
|
|
|
import home from '@blog/routes/home';
|
|
|
|
import posts from '@blog/routes/post';
|
2024-07-03 02:35:01 +00:00
|
|
|
|
|
|
|
const app = new Hono();
|
|
|
|
|
2024-07-04 00:56:54 +00:00
|
|
|
// Render the JSX views
|
2024-07-03 02:35:01 +00:00
|
|
|
app.get(
|
|
|
|
'*',
|
|
|
|
jsxRenderer(
|
|
|
|
({ children }) => {
|
|
|
|
return (<Page>{children}</Page>);
|
|
|
|
},
|
|
|
|
{
|
|
|
|
docType: true
|
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
// read all posts
|
|
|
|
// create listing of posts
|
|
|
|
|
2024-07-04 00:56:54 +00:00
|
|
|
app.route('/', home);
|
|
|
|
app.route('/posts', posts);
|
2024-07-03 02:35:01 +00:00
|
|
|
|
|
|
|
export default app;
|