ips-lit/template.html
2025-04-17 05:23:18 +02:00

46 lines
709 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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$