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.
71 lines
2.5 KiB
71 lines
2.5 KiB
<?php |
|
//常用方法 |
|
require_once __DIR__ . '/../../../../plugins/Html.php'; |
|
|
|
$linkPrefix = ''; |
|
//多用户路径支持 |
|
if (!empty(FSC::$app['config']['multipleUserUriParse']) && !empty(FSC::$app['user_id'])) { |
|
$linkPrefix = '/' . FSC::$app['user_id']; |
|
} |
|
?><!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/tajian.css?v<?=Html::getStaticFileVersion('tajian.css', 'css')?>" rel="stylesheet"> |
|
</head> |
|
<body class="layout_index"> |
|
<header class="top_nav"> |
|
<a class="log_tn clearfix" href="/" title="<?php echo $pageTitle; ?>"> |
|
<span class="verBaseline">Ta荐</span> |
|
- TaJian.tv |
|
</a> |
|
<div class="right_class_tn"> |
|
<a class="connect_me_tn" href="/site/login/"><img src="/img/PersonalCenter.svg" alt="用户登录" class="verBottom">登录</a> |
|
</div> |
|
</header> |
|
|
|
<?php |
|
//### Render view file |
|
if (!empty($viewFile) && file_exists($viewFile)) { |
|
include_once $viewFile; |
|
} |
|
?> |
|
|
|
<div class="footer"> |
|
<div class="copyright"> |
|
本站源代码GitHub网址 <a href="https://github.com/filesite-io/machete" target="_blank">Machete源码</a> |
|
<br> |
|
数据采集由 |
|
<a href="https://herounion.filesite.io" target="_blank">HeroUnion英雄联盟</a> |
|
提供支持 |
|
<br> |
|
<a href="https://filesite.io" target="_blank">©FileSite.io</a> 2022 - execute time: {page_time_cost} ms |
|
</div> |
|
</div> |
|
|
|
<div class="footimg vercenter"> |
|
<a class="log_tn clearfix" href="/" title="<?php echo $pageTitle; ?>"> |
|
<span class="verBaseline">Ta荐</span> |
|
- TaJian.tv |
|
</a> |
|
<p>你看到的,也许只是冰山一角!</p> |
|
<img src="/img/bg/ice_3.jpeg" alt="水面上的冰山一角"> |
|
</div> |
|
|
|
<?php |
|
$user_id = ''; |
|
if (!empty(FSC::$app['config']['multipleUserUriParse']) && !empty(FSC::$app['user_id'])) { |
|
$user_id = FSC::$app['user_id']; |
|
} |
|
?> |
|
<script>var current_user_id = '<?=$user_id?>';</script> |
|
<script src="/js/jquery-3.6.0.min.js"></script> |
|
<script src="/js/lazyload.js"></script> |
|
<script src="/js/tajian.js?v<?=Html::getStaticFileVersion('tajian.js', 'js')?>"></script> |
|
<?php echo Html::getGACode(); ?> |
|
</body> |
|
</html>
|
|
|