2021-03-23 00:51:45 +08:00
|
|
|
<?php require_once "./src/Data/SiteMeta.php" ?>
|
|
|
|
|
|
|
|
<!-- Gitbook Assets(js) -->
|
|
|
|
<?php
|
|
|
|
foreach (SiteMeta::getGitbookJavascriptList() as $item) {
|
|
|
|
echo "<script src=\"$item\"></script>";
|
|
|
|
}
|
|
|
|
?>
|
2021-05-05 13:42:29 +08:00
|
|
|
<script><?= SiteMeta::getCustomScriptContent("custom") ?></script>
|
2021-05-31 16:05:45 +08:00
|
|
|
<script>
|
|
|
|
bookCurrentId = "<?= PageMeta::$book->getId() ?>";
|
|
|
|
pageCurrentId = "<?= PageMeta::$page->getId() ?>";
|
2021-11-24 01:08:24 +08:00
|
|
|
hljs.highlightAll();
|
2021-05-31 16:05:45 +08:00
|
|
|
</script>
|
2021-03-23 00:51:45 +08:00
|
|
|
|
|
|
|
</body>
|
|
|
|
|
2021-05-31 16:05:45 +08:00
|
|
|
</html>
|