46 lines
709 B
HTML
46 lines
709 B
HTML
<!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$
|