+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
+ <head>
+ <meta charset="utf-8"/>
+ <title><?= htmlspecialchars($title); ?></title>
+ <meta name="generator" content="pjgsapi"/>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <link rel="stylesheet" type="text/css" href="css/discover.css"/>
+ <link rel="icon" href="img/faviconnew.png"/>
+ <link rel="canonical" href="<?= htmlspecialchars($canonicalUrl) ?>"/>
+ </head>
+ <body>
+ <header>
+ <a href="/">
+ <img src="img/logo_2.png" width="176" height="24"
+ alt="PlayJam GameStick Logo"/>
+ </a>
+ </header>
+
+ <?php if (count($subNav)): ?>
+ <nav id="subnav">
+ <ul>
+ <?php foreach ($subNav as $navUrl => $navTitle): ?>
+ <?php if ($navUrl == $path || $navUrl === $subNavActivePath): ?>
+ <li class="active"><a href="<?= htmlspecialchars($navUrl) ?>"><?= htmlspecialchars($navTitle) ?></a></li>
+ <?php else: ?>
+ <li><a href="<?= htmlspecialchars($navUrl) ?>"><?= htmlspecialchars($navTitle) ?></a></li>
+ <?php endif; ?>
+ <?php endforeach; ?>
+ </ul>
+ </nav>
+ <script type="text/javascript">
+ document.addEventListener('DOMContentLoaded', function (event) {
+ var element = document.querySelector('#subnav li.active');
+ element.scrollIntoView({behavior: 'instant', inline: 'center', block: 'center'});
+ });
+ </script>
+ <?php endif; ?>
+ <div id="content">
+
+ <input id="showmainnav" type="checkbox" style="display: none"/>
+ <nav id="mainnav">
+ <ul>
+ <?php foreach ($mainNav as $navUrl => $navTitle): ?>
+ <?php if ($navUrl == $path || $navUrl == $mainNavActivePath): ?>
+ <li class="mobile-current"><label for="showmainnav"><span class="text"><?= htmlspecialchars($navTitle) ?></span><span class="icon">≡</span></label></li>
+ <?php endif; ?>
+ <?php endforeach; ?>
+
+ <?php foreach ($mainNav as $navUrl => $navTitle): ?>
+ <?php if ($navUrl == $path || $navUrl == $mainNavActivePath): ?>
+ <li class="active"><a href="<?= htmlspecialchars($navUrl) ?>"><?= htmlspecialchars($navTitle) ?></a></li>
+ <?php else: ?>
+ <li><a href="<?= htmlspecialchars($navUrl) ?>"><?= htmlspecialchars($navTitle) ?></a></li>
+ <?php endif; ?>
+ <?php endforeach; ?>
+ </ul>
+ </nav>
+
+ <article>
+ <?= $content ?>
+ </article>
+ </div>
+ </body>
+</html>