mirror of
https://github.com/suk-ws/ph-Bookshelf.git
synced 2025-01-19 07:22:26 +08:00
16 lines
288 B
PHP
16 lines
288 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>";
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|