mirror of
https://github.com/suk-ws/ph-Bookshelf.git
synced 2025-01-19 07:22:26 +08:00
19 lines
447 B
PHP
19 lines
447 B
PHP
<?php require_once "./src/Data/SiteMeta.php" ?>
|
|
|
|
<!-- Gitbook Assets(js) -->
|
|
<?php
|
|
foreach (SiteMeta::getGitbookJavascriptList() as $item) {
|
|
echo "<script src=\"$item\"></script>";
|
|
}
|
|
?>
|
|
<script><?= SiteMeta::getCustomScriptContent("custom") ?></script>
|
|
<script>
|
|
bookCurrentId = "<?= PageMeta::$book->getId() ?>";
|
|
pageCurrentId = "<?= PageMeta::$page->getId() ?>";
|
|
hljs.highlightAll();
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|