Source code of filesite.io.
https://filesite.io
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
3.1 KiB
85 lines
3.1 KiB
2 years ago
|
<?php
|
||
|
//常用方法
|
||
|
require_once __DIR__ . '/../../../../plugins/Html.php';
|
||
|
|
||
|
?><!DocType html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title><?php echo $pageTitle;?></title>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
|
||
|
<link rel="icon" type="image/x-icon" href="/favicon.ico?v1.0">
|
||
|
<link href="/css/main.css?v.1.1" rel="stylesheet">
|
||
|
<!--for theme beauty-->
|
||
|
<link href="/css/github-markdown-light.css" rel="stylesheet" id="markdowncss">
|
||
|
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||
|
<link href="/css/fubox.min.css" rel="stylesheet">
|
||
|
<link href="/css/beauty.css?v<?=Html::getStaticFileVersion('beauty.css', 'css')?>" rel="stylesheet">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div id="image_site" class="main_style">
|
||
|
|
||
|
<?php
|
||
|
//### Render view file
|
||
|
if (!empty($viewFile) && file_exists($viewFile)) {
|
||
|
include_once $viewFile;
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
<!-- 尾部网站信息 -->
|
||
|
<footer class="web_info vercenter">
|
||
|
<p>
|
||
|
Copyright <span>©2022</span>
|
||
|
by <a href="https://filesite.io/" target="_blank">FileSite.io</a>
|
||
|
<br>
|
||
|
<?php if (!empty(FSC::$app['config']['theme'])) { ?>
|
||
|
当前皮肤 <strong><?php echo FSC::$app['config']['theme']; ?></strong>
|
||
|
- 执行耗时: {page_time_cost} ms
|
||
|
<?php } ?>
|
||
|
</p>
|
||
|
<?php if (!empty(FSC::$app['config']['googleimage']['contact'])) {
|
||
|
$contactInfo = FSC::$app['config']['googleimage']['contact'];
|
||
|
echo <<<eof
|
||
|
<p>{$contactInfo}</p>
|
||
|
eof;
|
||
|
} ?>
|
||
|
</footer>
|
||
|
|
||
|
<!-- 右侧弹出框 -->
|
||
|
<div class="blank_cover elementNone blank_coverJS rtcloseJS"></div>
|
||
|
<div class="right_sidebox right_sideboxJS elementNone">
|
||
|
<h5>
|
||
|
<span>联系我们</span>
|
||
|
<a class="rtcloseJS" href="javascript:;">
|
||
|
<img class="icon svgimg verMiddle" src="/img/beauty/clos.svg" alt="关闭" title="关闭">
|
||
|
</a>
|
||
|
</h5>
|
||
|
<div class="modal-body markdown-body">
|
||
|
<?php echo !empty($viewData['htmlReadme']) ? $viewData['htmlReadme'] : ''; ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- 右下角回到顶部悬浮块 -->
|
||
|
<div class="btrt_side">
|
||
|
<ul class="btrt_side_ul">
|
||
|
<li class="scroll_top scroll_topJS">
|
||
|
<img class="icon svg" src="/img/beauty/huojian.svg" alt="回到顶部" title="点击回到顶部" />
|
||
|
</li>
|
||
|
<li class="connectmeJS">
|
||
|
<img class="icon svg verMiddle" src="/img/beauty/scrolltop.svg" alt="联系我们" title="联系我们" />
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!--for theme googleimage-->
|
||
|
<script src="/js/jquery-3.6.0.min.js"></script>
|
||
|
<script src="/js/bootstrap.min.js"></script>
|
||
|
<script src="/js/lazyload.js"></script>
|
||
|
<script src="/js/fubox.min.js"></script>
|
||
|
<script src="/js/beauty.js?v<?=Html::getStaticFileVersion('beauty.js', 'js')?>"></script>
|
||
|
</body>
|
||
|
</html>
|