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.
7 lines
112 B
TypeScript
7 lines
112 B
TypeScript
import { Element } from "antihtml";
|
|
|
|
export interface Page {
|
|
title: string,
|
|
ref: string,
|
|
content: Element,
|
|
}
|