mezza.biz/_includes/layouts/default.tsx

27 lines
464 B
TypeScript
Raw Normal View History

2023-02-25 19:38:19 +00:00
import { md } from '../../filters.ts';
import Head from '../Head.tsx';
export default ({
title,
content,
theme,
extraStylesheets,
extraScripts,
cacheBust,
showHakkenDates,
}) => <>
<html>
<Head
title={title}
theme={theme}
extraStylesheets={extraStylesheets}
cacheBust={cacheBust}
extraScripts={[...(extraScripts || []), '/scripts/copy-code.js']}
/>
<body className="ps-main">
</body>
</html>
</>;