1
0
mirror of https://github.com/suk-ws/ph-Bookshelf.git synced 2025-01-19 07:22:26 +08:00
ph-Bookshelf/template/footer.php
Eyre_S 68c2621d9f
脱离 gitbook 前端,预备新前端
- 脱离了 gitbook
- 添加 demo.html 作为新前端的结构模板
- 建立基础的页面样式
  - 建立基础的 侧边栏-文章 布局
  - 侧边栏样式
  - 自定义的字体
  - <h1>, <a>, <small> 的样式实现
- 目录折叠功能实现
2021-09-30 19:34:16 +08:00

18 lines
423 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() ?>";
</script>
</body>
</html>