- 2.1: packs/ -> archive/packs/ - 2.2: site/ -> archive/site/ - 2.3: src/lab/ -> archive/lab/ - 2.4: examples/ -> archive/examples-legacy/ (SSI-based)
50 lines
1.1 KiB
HTML
50 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!--#include virtual="/_include/head.html" -->
|
|
<title>$title$ — ASW Docs</title>
|
|
$if(description)$ <meta name="description" content="$description$">
|
|
$endif$</head>
|
|
<body>
|
|
<!--#include virtual="/_include/nav.html" -->
|
|
|
|
<div data-layout="docs">
|
|
|
|
<!--#include virtual="/_include/sidebar.html" -->
|
|
|
|
<article>
|
|
<h1>$title$</h1>
|
|
$if(description)$ <p data-text="lead">$description$</p>
|
|
$endif$
|
|
$body$
|
|
|
|
$if(prev-url)$
|
|
<nav data-role="prev-next">
|
|
$if(prev-url)$ <a href="$prev-url$" rel="prev">
|
|
<small>← Previous</small>
|
|
<span>$prev-title$</span>
|
|
</a>
|
|
$endif$
|
|
$if(next-url)$ <a href="$next-url$" rel="next">
|
|
<small>Next →</small>
|
|
<span>$next-title$</span>
|
|
</a>
|
|
$endif$
|
|
</nav>
|
|
$endif$
|
|
</article>
|
|
|
|
<aside data-toc>
|
|
<nav aria-label="On this page" data-nav="toc">
|
|
<small>On this page</small>
|
|
<ul></ul>
|
|
</nav>
|
|
</aside>
|
|
|
|
</div>
|
|
|
|
<!--#include virtual="/_include/footer.html" -->
|
|
|
|
<script src="/docs/toc-spy.js"></script>
|
|
</body>
|
|
</html>
|