hornwitser.no/content/types.ts
Hornwitser 8fb809fa95 Scaffold basic page layout and site generation
Set up the basic layout of the site and greybox its content based on
statically generated pages.  Content pages uses general base layouts
defined centrally to avoid duplicating code.
2025-01-22 05:52:21 +01:00

7 lines
112 B
TypeScript

import { Element } from "antihtml";
export interface Page {
title: string,
ref: string,
content: Element,
}