mirror of
https://github.com/suk-ws/ph-Bookshelf.git
synced 2025-01-19 07:22:26 +08:00
Eyre_S
f00a421c31
- 现在读取的是 data 目录下的 custom.css 和 custom.js 文件 - custom.css 会作为最后一个 <head> 子元素输出,custom.js 会在页面尾在预定义 js 输出后输出
17 lines
357 B
PHP
17 lines
357 B
PHP
<?php require_once "./src/Data/SiteMeta.php" ?>
|
|
</div>
|
|
|
|
<!-- Page data -->
|
|
<?php // TODO Get Page data ?>
|
|
|
|
<!-- Gitbook Assets(js) -->
|
|
<?php
|
|
foreach (SiteMeta::getGitbookJavascriptList() as $item) {
|
|
echo "<script src=\"$item\"></script>";
|
|
}
|
|
?>
|
|
<script><?= SiteMeta::getCustomScriptContent("custom") ?></script>
|
|
|
|
</body>
|
|
|
|
</html>
|