This commit is contained in:
rhiannon morris 2025-04-17 05:23:18 +02:00
commit 0b41af265e
26 changed files with 1103 additions and 0 deletions

46
template.html Normal file
View file

@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport
content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link rel=stylesheet href=/ips/style/style.css>
$for(css)$
<link rel=stylesheet href="$css$">
$endfor$
$for(header-includes)$
$header-includes$
$endfor$
<title>$if(title-prefix)$$title-prefix$ $endif$$pagetitle$</title>
$for(include-before)$
$include-before$
$endfor$
$if(title)$
<header>
<h1>$title$</h1>
$if(subtitle)$
<p>$subtitle$
$endif$
</header>
$endif$
$if(toc)$
<nav id="toc" role="doc-toc">
$if(toc-title)$
<h2>$toc-title$</h2>
$endif$
$table-of-contents$
</nav>
$endif$
<main>
$body$
</main>
$for(include-after)$
$include-after$
$endfor$