16 lines
292 B
HTML
16 lines
292 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- pagetitle description and outfn variables are available -->
|
|
<title>${pagetitle}</title>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>${pagetitle}</h1>
|
|
$if(BLOG)$
|
|
<h5>Author: ${author} | Published: ${date}</h5>
|
|
$endif$
|
|
${body}
|
|
</main>
|
|
</body>
|
|
</html>
|