filesite
7 months ago
12 changed files with 192 additions and 16 deletions
@ -0,0 +1,57 @@
@@ -0,0 +1,57 @@
|
||||
<?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> |
||||
<div class="app_recommend" id="app_recommend"> |
||||
<header class="top_nav elementBlock vercenter"> |
||||
<a class="log_tn clearfix" href="/"> |
||||
<span class="verMiddle">Ta荐</span> |
||||
- TaJian.tv |
||||
</a> |
||||
</header> |
||||
|
||||
<?php |
||||
//### Render view file |
||||
if (!empty($viewFile) && file_exists($viewFile)) { |
||||
include_once $viewFile; |
||||
} |
||||
?> |
||||
|
||||
<div class="footer"> |
||||
<div class="copyright"> |
||||
<?php if (!empty(FSC::$app['config']['theme'])) { ?> |
||||
Theme name <strong><?php echo FSC::$app['config']['theme']; ?></strong> |
||||
<br> |
||||
<?php } ?> |
||||
<a href="https://filesite.io" target="_blank">©FileSite.io</a> 2022 - execute time: {page_time_cost} ms |
||||
<br> |
||||
数据采集由 |
||||
<a href="https://herounion.filesite.io" target="_blank">HeroUnion英雄联盟</a> |
||||
提供技术支持 |
||||
<br> |
||||
从GitHub下 <a href="https://github.com/filesite-io/machete" target="_blank">Machete源码</a> 快速克隆本站 |
||||
</div> |
||||
</div> |
||||
</div><!--app_recommend--> |
||||
|
||||
<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> |
||||
</body> |
||||
</html> |
@ -0,0 +1,65 @@
@@ -0,0 +1,65 @@
|
||||
<?php |
||||
//常用方法 |
||||
require_once __DIR__ . '/../../../../plugins/Html.php'; |
||||
$imgPreffix = '/' . FSC::$app['config']['content_directory'] . FSC::$app['config']['tajian']['data_dir']; |
||||
|
||||
$linkPrefix = ''; |
||||
//多用户路径支持 |
||||
if (!empty(FSC::$app['config']['multipleUserUriParse']) && !empty(FSC::$app['user_id'])) { |
||||
$linkPrefix = '/' . FSC::$app['user_id']; |
||||
} |
||||
|
||||
?> |
||||
<style> |
||||
body{background-color:#e5f1f3} |
||||
</style> |
||||
<main class="tajian_index"> |
||||
<h1 class="h1title vercenter"> |
||||
一个好用的视频收藏夹 |
||||
<small>- 分享喜欢的视频给朋友,帮TA节省刷视频的时间吧!</small> |
||||
</h1> |
||||
|
||||
<div class="btns clearfix"> |
||||
<div class="favbtn"> |
||||
<a href="###"> |
||||
<img src="/img/favorite.png" alt="Create your favorite tajian link." width="100"> |
||||
<br> |
||||
创建专属收藏夹 |
||||
</a> |
||||
</div> |
||||
<div class="downbtn"> |
||||
<a href="https://github.com/filesite-io/machete" target="_blank"> |
||||
<img src="/img/download.png" alt="Download machete source code" width="100"> |
||||
<br> |
||||
下载Machete源码 |
||||
</a> |
||||
</div> |
||||
</div> |
||||
|
||||
<h3 class="h3title pl20">使用方法</h3> |
||||
<div class="pl20 lh18"> |
||||
1. 点上面“创建专属收藏夹”, |
||||
<br> 用手机号码 + 邀请码(朋友手机号码末6位)<a href="###" class="loginbtn">注册</a> |
||||
<br class="hidden-xs"> |
||||
还可以加客服微信索要注册邀请码 |
||||
<img src="/tajian/wx_jialuoma.jpeg" alt="Ta荐客服微信二维码" width="200" class="kfwx"> |
||||
<br class="hidden-xs"> |
||||
2. 用手机号码 <a href="###" class="loginbtn">登录</a> |
||||
<br class="hidden-xs"> |
||||
3. 从各大视频App、网站复制分享链接 |
||||
<br> |
||||
4. 在“添加”里粘贴后保存 |
||||
<br> |
||||
5. 分享你的专属链接给朋友 |
||||
</div> |
||||
|
||||
<h3 class="h3title pl20">支持的视频App/网站</h3> |
||||
<ul class="ulist pl20"> |
||||
<li>抖音</li> |
||||
<li>B站 - Bilibili</li> |
||||
<li>快手</li> |
||||
<li>西瓜视频</li> |
||||
</ul> |
||||
<p class="pl20 pt20">其它App和网站将陆续增加。。。</p> |
||||
|
||||
</main> |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 9.3 KiB |
Loading…
Reference in new issue