46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="<?= $currentLang ?? 'en' ?>">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/app/docs-styles/base.css">
|
|
<title><?= $pageTitle ?? 'Documentation' ?></title>
|
|
</head>
|
|
<body>
|
|
<div class="docs-container">
|
|
<header>
|
|
<h1><a href="/docs">PnP Documentation</a></h1>
|
|
</header>
|
|
|
|
<aside class="sidebar">
|
|
<h2>Tutorials</h2>
|
|
<ul>
|
|
<li><a href="/docs/tutorials/getting-started">Getting Started</a></li>
|
|
</ul>
|
|
|
|
<h2>How-To Guides</h2>
|
|
<ul>
|
|
<li><a href="/docs/how-to/customize-templates">Customize Templates</a></li>
|
|
</ul>
|
|
|
|
<h2>Explanation</h2>
|
|
<ul>
|
|
<li><a href="/docs/explanation/routing">Routing System</a></li>
|
|
</ul>
|
|
|
|
<h2>Reference</h2>
|
|
<ul>
|
|
<li><a href="/docs/reference/metadata">Metadata</a></li>
|
|
</ul>
|
|
</aside>
|
|
|
|
<main>
|
|
<?= $content ?>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>PnP Framework Documentation</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|