1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
- <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
- $for(css)$
- <link rel="stylesheet" href="$css$" />
- $endfor$
- $if(math)$
- $math$
- $endif$
- <script>$for(header-includes)$$header-includes$$endfor$</script>
- </head>
- <body>
- $for(include-before)$
- $include-before$
- $endfor$
- $if(title)$
- <header>
- <h1 class="title">$title$</h1>
- $if(subtitle)$
- <p class="subtitle">$subtitle$</p>
- $endif$
- $for(author)$
- <p class="author">$author$</p>
- $endfor$
- $if(date)$
- <p class="date">$date$</p>
- $endif$
- </header>
- $endif$
- $if(toc)$
- <nav id="$idprefix$TOC">
- $table-of-contents$
- </nav>
- $endif$
- $body$
- $for(include-after)$
- $include-after$
- $endfor$
- </body>
- </html>
|