doit/templates/main.html

17 lines
292 B
HTML
Raw Normal View History

2024-07-15 17:15:29 -04:00
<!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>