debug
177
code/app/home/view/videoDadi/base.html
Normal file
@@ -0,0 +1,177 @@
|
|||||||
|
<html lang="zh">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
{block name="get-data"}{/block}
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
|
||||||
|
<title>{block name="title"}{/block}</title>
|
||||||
|
<meta name="keywords" content='{block name="keywords"}{/block}'>
|
||||||
|
<meta name="description" content='{block name="description"}{/block}'>
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="/template/videodadi/img/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="canonical" href="https://{$DomainModel->d_domain}/">
|
||||||
|
<link href="/public/layer/need/layer.css" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="/template/videodadi/font/iconfont.css" type="text/css">
|
||||||
|
<link rel="stylesheet" href="/template/videodadi/css/stui_block.css" type="text/css">
|
||||||
|
<link rel="stylesheet" href="/template/videodadi/css/stui_block_color.css" type="text/css">
|
||||||
|
<link rel="stylesheet" href="/template/videodadi/css/stui_default.css" type="text/css">
|
||||||
|
<link rel="stylesheet" href="/template/videodadi/css/mytheme-font.css" type="text/css">
|
||||||
|
<link rel="stylesheet" href="/template/videodadi/css/index.css" type="text/css">
|
||||||
|
|
||||||
|
<script src="/public/jquery/jquery-3.7.1.min.js" type="module" charset="utf-8"></script>
|
||||||
|
<!-- <script type="text/javascript" src='/template/videodadi/cctv/json.js?v={site:cfg code="STATIC_FILE_VERSION" encode="false"/}'></script> -->
|
||||||
|
<script type="text/javascript" src='/template/videodadi/cctv/index.js?v={site:cfg code="STATIC_FILE_VERSION" encode="false"/}'></script>
|
||||||
|
|
||||||
|
{block name="head"}{/block}
|
||||||
|
{block name="head-css"}{/block}
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
<script>
|
||||||
|
const strPcPath = `{$strPcPath}`;
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 高权重站排名 -->
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header class="stui-header__top clearfix top-fixed headroom--top headroom--not-bottom" id="header-top">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="stui-header_bd clearfix">
|
||||||
|
<div class="stui-header__logo">
|
||||||
|
{if $DomainModel->d_logo_type == 1}
|
||||||
|
<a style="color: rgb(146, 198, 165);" class="logo" href="/"></a>
|
||||||
|
{else}
|
||||||
|
<a class="logo-text" href="/">{$DomainModel->d_name}</a>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="stui-header__side">
|
||||||
|
<ul class="stui-header__user">
|
||||||
|
<li>
|
||||||
|
<a style="color: rgb(218, 103, 191);" href="javascript:;">
|
||||||
|
<i class="icon iconfont icon-clock"></i>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown history">
|
||||||
|
<h5 class="margin-0 text-muted">
|
||||||
|
<a style="color: rgb(202, 246, 69);" class="historyclean text-muted pull-right"
|
||||||
|
href="">清空</a>
|
||||||
|
播放记录
|
||||||
|
</h5>
|
||||||
|
<ul class="clearfix" id="stui_history">
|
||||||
|
<p style="padding: 80px 0; text-align: center">您还没有看过影片哦</p>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="stui-header__search">
|
||||||
|
<form id="search" name="search" method="get" action=""
|
||||||
|
onsubmit="return qrsearch();">
|
||||||
|
<input type="text" name="wd" class="mac_wd form-control mac_input" value=""
|
||||||
|
placeholder="请输入关键词..." autocomplete="off">
|
||||||
|
<button class="submit" id="searchbutton" type="submit">
|
||||||
|
<i class="icon iconfont icon-search"></i>
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="stui-header__menu type-slide">
|
||||||
|
<!-- 首页 -->
|
||||||
|
{if $DomainModel->info_id > 0}
|
||||||
|
<li class="active">
|
||||||
|
<a style="color: rgb(149, 0, 197);" href="/">首页</a>
|
||||||
|
</li>
|
||||||
|
<li class="active">
|
||||||
|
<a style="color: rgb(149, 0, 197);" href="/vindex">影视首页</a>
|
||||||
|
</li>
|
||||||
|
{else}
|
||||||
|
<li class="active">
|
||||||
|
<a style="color: rgb(149, 0, 197);" href="/">首页</a>
|
||||||
|
</li>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<!-- 动态分类导航 -->
|
||||||
|
{video:categorytype category_type="ONE" d_key="key" d_val="val"}
|
||||||
|
<li class="{if $key == 1}active{/if}">
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)});"
|
||||||
|
href="">
|
||||||
|
{$val.v_category}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{/video:categorytype}
|
||||||
|
|
||||||
|
<!-- <li class="">
|
||||||
|
<a style="color: rgb(255, 102, 0);" href="">深度</a>
|
||||||
|
</li> -->
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(".stui-header__user li,.stui-header__menu li").click(function () { $(this).find(".dropdown").toggle(); });
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="s-main-box-middle cctv-hf-list-top" style="">
|
||||||
|
<div
|
||||||
|
class="swiper swiper-top-zxcv swiper-initialized swiper-horizontal swiper-pointer-events swiper-ios swiper-backface-hidden">
|
||||||
|
<div class="swiper-wrapper ">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="swiper-pagination"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{include file="public/footer" /}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
const lazyImages = document.querySelectorAll(".lazyload");
|
||||||
|
|
||||||
|
const observer = new IntersectionObserver((entries, observer) => {
|
||||||
|
entries.forEach(entry => {
|
||||||
|
if (entry.isIntersecting) {
|
||||||
|
const img = entry.target;
|
||||||
|
const src = img.getAttribute("data-src");
|
||||||
|
if (src) {
|
||||||
|
img.style.backgroundImage = `url(${src})`;
|
||||||
|
img.classList.remove("lazyload");
|
||||||
|
observer.unobserve(img);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
lazyImages.forEach(img => observer.observe(img));
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
{site:site valcode="site_tongji" encode="false"/}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
110
code/app/home/view/videoDadi/baseH5.html
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
<html lang="zh">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
{block name="get-data"}{/block}
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<title>{block name="title"}{/block}</title>
|
||||||
|
<meta name="keywords" content='{block name="keywords"}{/block}'>
|
||||||
|
<meta name="description" content='{block name="description"}{/block}'>
|
||||||
|
<link rel="shortcut icon" href="/template/default/img/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="canonical" href="https://{$DomainModel->d_domain}/">
|
||||||
|
<link href="/public/layer/need/layer.css" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href='/template/default/h5/css/style.css?v={site:cfg code="STATIC_FILE_VERSION" encode="false"/}'>
|
||||||
|
|
||||||
|
{block name="head"}{/block}
|
||||||
|
{block name="head-css"}{/block}
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
<script>
|
||||||
|
const strPcPath = `{$strPcPath}`;
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="{block name='body-class'}{/block}" id="{block name='body-id'}{/block}">
|
||||||
|
<div class="header">
|
||||||
|
{block name="logo-html"}{/block}
|
||||||
|
|
||||||
|
<div class="operate" id="qs_login"><a href="{$strBookShelfUrlTemp}">书架</a></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="nav">
|
||||||
|
<ul>
|
||||||
|
{if $DomainModel->info_id > 0}
|
||||||
|
<li><a href="/">首 页</a></li>
|
||||||
|
<li><a href="/nindex/">小说首页</a></li>
|
||||||
|
{else}
|
||||||
|
<li><a href="/">首 页</a></li>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<li><a href="{$strCategoryIndexUrlTemp}">小说分类</a></li>
|
||||||
|
<li><a href="{$strHistoryUrlTemp}">阅读记录</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="clear"></div>
|
||||||
|
<div class="novel_search">
|
||||||
|
<form id="novel_search" class="search-form" method="get" action="{$strSearchIndexUrlTemp}">
|
||||||
|
<input type="text" class="input-text input-key" name="keyword" placeholder="输入书名/作者进行搜索">
|
||||||
|
<button type="submit" class="btn-tosearch" form="novel_search" value="submit">搜 索</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
{block name="nav-html"}{/block}
|
||||||
|
|
||||||
|
{block name="main"} {/block}
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title">
|
||||||
|
<span>最新标签</span>
|
||||||
|
</h3>
|
||||||
|
<div class="rec-focus" style="font-size:12px;">
|
||||||
|
{site:forgelist count="30" d_key="d_key" d_val="ForgeNovel" cache_life="86400"}
|
||||||
|
<a
|
||||||
|
href='{site:nnurl n_id="$ForgeNovel.n_id" n_py="$ForgeNovel.n_name_pinyin" n_fid="$ForgeNovel.n_forge_id"/}'>
|
||||||
|
{$ForgeNovel.n_forge_title}
|
||||||
|
</a>
|
||||||
|
{/site:forgelist}
|
||||||
|
<a href="/sitemap_index.xml">XML地图</a>
|
||||||
|
<a href="/robots.txt">网站地图</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p style="font-size: 12px;text-align: center;"> 反馈邮箱:
|
||||||
|
{site:cfg code="YOU_XIANG" encode="false"/} Inc. All Rights Reserved.</p>
|
||||||
|
<p style="font-size: 12px;text-align: center;"> </p>
|
||||||
|
<div class="footer">
|
||||||
|
<ul>
|
||||||
|
{if $DomainModel->info_id > 0}
|
||||||
|
<li><a href="/">首 页</a></li>
|
||||||
|
<li><a href="/nindex/">小说首页</a></li>
|
||||||
|
{else}
|
||||||
|
<li><a href="/">首 页</a></li>
|
||||||
|
{/if}
|
||||||
|
<li><a href="{$strCategoryIndexUrlTemp}">分类</a></li>
|
||||||
|
<li><a href="/sitemap_index.xml">XML地图</a></li>
|
||||||
|
<li><a href="{$strHistoryUrlTemp}">阅读记录</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const strPushApi = `{site:cfg code="PUSH_API_DOMAIN" encode="false"/}`;
|
||||||
|
</script>
|
||||||
|
<script src="/template/default/h5/js/jquery.min.js"></script>
|
||||||
|
<script src="/public/layer/layer.js" type="module" charset="utf-8"></script>
|
||||||
|
<script src='/template/default/h5/js/common.js?v={site:cfg code="STATIC_FILE_VERSION" encode="false"/}'></script>
|
||||||
|
<script src='/template/default/js/common.js?v={site:cfg code="STATIC_FILE_VERSION" encode="false"/}'></script>
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
<!-- 全局统计 -->
|
||||||
|
{site:cfg code="PUBLIC_TONGJI_CODE" encode="false"/}
|
||||||
|
|
||||||
|
<!-- 站点统计 -->
|
||||||
|
{$DomainModel->d_statis|raw}
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
112
code/app/home/view/videoDadi/basePc.html
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
<html lang="zh">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
{block name="get-data"}{/block}
|
||||||
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
||||||
|
<meta name="renderer" content="webkit">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta http-equiv="Cache-Control" content="no-cache,must-revalidate">
|
||||||
|
<meta http-equiv="Cache-Control" content="no-siteapp">
|
||||||
|
<meta http-equiv="Cache-Control" content="no-transform">
|
||||||
|
<meta name="robots" content="index, follow" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>{block name="title"}{/block}</title>
|
||||||
|
<meta name="keywords" content='{block name="keywords"}{/block}'>
|
||||||
|
<meta name="description" content='{block name="description"}{/block}'>
|
||||||
|
<meta http-equiv="mobile-agent" content="format=html5; url={$DomainModel->d_domain}">
|
||||||
|
<meta name="shenma-site-verification" content="941546c24f6fa26aab1a1c67341a9e07_1653579597">
|
||||||
|
<link rel="alternate" type="application/vnd.wap.xhtml+xml" media="handheld"
|
||||||
|
href="{$DomainModel->d_domain}">
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="/template/default/img/favicon.ico" type="image/x-icon">
|
||||||
|
<link href="/public/layer/need/layer.css" rel="stylesheet">
|
||||||
|
<link href='/template/default/pc/css/style.css?v={site:cfg code="STATIC_FILE_VERSION" encode="false"/}' rel="stylesheet" type="text/css">
|
||||||
|
{block name="meta-other"}{/block}
|
||||||
|
{block name="head"}{/block}
|
||||||
|
{block name="head-css"}{/block}
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
<script>
|
||||||
|
const strPcPath = `{$strPcPath}`;
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
{block name="strPageCode"}
|
||||||
|
<?php $strPageCode = 'home'; ?>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
<body class="novel_home {block name='body-class'}{/block}" id="{block name='body-id'}{/block}">
|
||||||
|
<div class="topbar">
|
||||||
|
<div class="topbar-con">
|
||||||
|
<div class="topbar-sethome"><a href="javascript:winSetHP();">将本站设为首页</a></div>
|
||||||
|
<div class="topbar-addfavorite"><a href="javascript:winAddFav()">收藏{$DomainModel->d_name}</a></div>
|
||||||
|
<div class="topbar-right" id="qs_login"><a href="{$strPcPath}{$strBookShelfUrlTemp}">我的书架</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="header">
|
||||||
|
<h1 class="logo"><a href="{$strPcPath}/"><span>{$DomainModel->d_name}</span></a></h1>
|
||||||
|
<form id="novel_search" class="search-form" method="get" action="{$strPcPath}{$strSearchIndexUrlTemp}"><input type="text"
|
||||||
|
class="input-text input-key" name="keyword" placeholder="输入书名/作者进行搜索"><button type="submit"
|
||||||
|
class="btn-tosearch" form="novel_search" value="submit">搜索</button></form>
|
||||||
|
</div>
|
||||||
|
<ul class="nav">
|
||||||
|
{if $DomainModel->info_id > 0}
|
||||||
|
<li class='{if $strPageCode == "home"}active_nav_btn{/if}'><a href="{$strPcPath}/">首 页</a></li>
|
||||||
|
<li><a href="{$strPcPath}/nindex/">小说首页</a></li>
|
||||||
|
{else}
|
||||||
|
<li class='{if $strPageCode == "home"}active_nav_btn{/if}'><a href="{$strPcPath}/">首 页</a></li>
|
||||||
|
{/if}
|
||||||
|
{novel:category d_key="strCategoryPinyin" d_val="strCategoryName"}
|
||||||
|
<li class='{if $strPageCode == "library" && $strCategoryPinyin == $Request.route.strCategory }active_nav_btn{/if}'><a href='{$strPcPath}{site:nflurl category="$strCategoryPinyin" status="all" order="all" page="1"/}'>{$strCategoryName}</a></li>
|
||||||
|
{/novel:category}
|
||||||
|
<li><a href="{$strPcPath}{$strHistoryUrlTemp}">阅读记录</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="layout layout3 layout-col3">
|
||||||
|
<h2 class="layout-tit">最新标签</h2>
|
||||||
|
<ul class="txt-list txt-list-row5 tag_news">
|
||||||
|
{site:forgelist count="50" d_key="d_key" d_val="ForgeNovel" cache_life="86400"}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nnurl n_id="$ForgeNovel.n_id" n_py="$ForgeNovel.n_name_pinyin" n_fid="$ForgeNovel.n_forge_id"/}'>
|
||||||
|
{$ForgeNovel.n_forge_title}
|
||||||
|
</a>
|
||||||
|
{/site:forgelist}
|
||||||
|
<a href="/sitemap_index.xml">XML地图</a>
|
||||||
|
<a href="/robots.txt">网站地图</a>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer" id="footer">
|
||||||
|
<div class="pc-footer">
|
||||||
|
<p>本站所有内容来源于互联网公开且无需登录即可获取的网页内容,本站爬虫遵循robots协议,若您的网站不希望被本站爬虫抓取,可通过屏蔽novelspider字段实现。<br>本站仅对抓取到的内容由程序自动进行排版处理再展现,不涉及更改内容,不针对任何内容表述任何立场。<br>同时您可手动提交相关目标站点网址给我们(站点内容必须允许游客访问,本站爬虫不会抓取需要登录后才展现内容的站点),爬虫程序会依据负载状态自动爬取相关页面。<br>如内容有违规,请通过本站反馈邮箱提交给我们进行删除处理。
|
||||||
|
</p>
|
||||||
|
<p> 反馈邮箱:
|
||||||
|
{site:cfg code="YOU_XIANG" encode="false"/} Inc. All Rights Reserved. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="shuqian"></div>
|
||||||
|
<script>
|
||||||
|
const strPushApi = `{site:cfg code="PUSH_API_DOMAIN" encode="false"/}`;
|
||||||
|
</script>
|
||||||
|
<script src="/template/default/pc/js/jquery.min.js"></script>
|
||||||
|
<script src="/public/layer/layer.js" type="module" charset="utf-8"></script>
|
||||||
|
<script src='/template/default/pc/js/common.js?v={site:cfg code="STATIC_FILE_VERSION" encode="false"/}'></script>
|
||||||
|
<script src='/template/default/js/common.js?v={site:cfg code="STATIC_FILE_VERSION" encode="false"/}'></script>
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
<!-- 全局统计 -->
|
||||||
|
{site:cfg code="PUBLIC_TONGJI_CODE" encode="false"/}
|
||||||
|
|
||||||
|
<!-- 站点统计 -->
|
||||||
|
{$DomainModel->d_statis|raw}
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
7
code/app/home/view/videoDadi/index.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
大地视频模板-资源模板
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
139
code/app/home/view/videoDadi/index/index.html
Normal file
@@ -0,0 +1,139 @@
|
|||||||
|
{extend name="base" /}
|
||||||
|
|
||||||
|
{block name="title"}{site:replace code="INDEX@INDEX@TITLE"}{/block}
|
||||||
|
{block name="keywords"}{site:replace code="INDEX@INDEX@KEYWORDS"}{/block}
|
||||||
|
{block name="description"}{site:replace code="INDEX@INDEX@DESCRIPTION"}{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content='{site:replace code="INDEX@INDEX@TITLE"}' />
|
||||||
|
<meta property="og:description" content='{site:replace code="INDEX@INDEX@DESCRIPTION"}' />
|
||||||
|
<meta property="og:url" content="https://{$DomainModel->d_domain}" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "WebSite",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
"url": "https://{$DomainModel->d_domain}",
|
||||||
|
"headline": '{site:replace code="INDEX@INDEX@TITLE"}',
|
||||||
|
"description": '{site:replace code="INDEX@INDEX@DESCRIPTION"}',
|
||||||
|
"datePublished": "{:date('Y-m-d')}"
|
||||||
|
|
||||||
|
"potentialAction": {
|
||||||
|
"@type": "SearchAction",
|
||||||
|
"target": 'https://{$DomainModel->d_domain}{site:souurl key="search_term_string" p="1"/}',
|
||||||
|
"query-input": "required name=search_term_string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h1 class="bookname">
|
||||||
|
<a href="/" style="color:#ffffff">{$DomainModel->d_name}</a>-免费在线阅读热门小说
|
||||||
|
</h1>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
{site:grm page_code="h5_index" diff="0" num="100" g_key="arrGrm" /}
|
||||||
|
|
||||||
|
<h2 class="site-description">{$DomainModel->d_index_description}</h2>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<div class="stui-pannel stui-pannel-bg clearfix">
|
||||||
|
<div class="stui-pannel-box clearfix">
|
||||||
|
<div class="stui-pannel_bd clearfix">
|
||||||
|
<!-- 左侧内容 -->
|
||||||
|
<div class="col-lg-wide-75 col-xs-1 padding-0">
|
||||||
|
<div class="stui-pannel_hd">
|
||||||
|
<div class="stui-pannel__head active bottom-line clearfix">
|
||||||
|
<a style="color: rgb(255, 0, 0);" class="more text-muted pull-right" href="/">更多<i
|
||||||
|
class="icon iconfont icon-more"></i></a>
|
||||||
|
<h3 class="title">
|
||||||
|
<img src="/template/videodadi/icon/icon_12.png">
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)});"
|
||||||
|
href="/">火爆推荐</a>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="stui-vodlist clearfix">
|
||||||
|
{video:list count="12" sort_type="tuijian" d_key="d_key" d_val="Video" cache_life="86400"}
|
||||||
|
{include file="public/video-list-shu" /}
|
||||||
|
{/video:list}
|
||||||
|
</ul>
|
||||||
|
<ul class="stui-vodlist__text col-pd clearfix hidden-xs">
|
||||||
|
{video:list count="12" sort_type="tuijian" d_key="d_key" d_val="Video" cache_life="86400"}
|
||||||
|
{include file="public/video-list-shu-end-text" /}
|
||||||
|
{/video:list}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- 右侧排行榜 -->
|
||||||
|
<div class="col-lg-wide-25 hidden-md hidden-sm hidden-xs">
|
||||||
|
<div class="stui-pannel_hd">
|
||||||
|
<div class="stui-pannel__head active bottom-line clearfix">
|
||||||
|
<h3 class="title"><img src="/template/videodadi/icon/icon_12.png"><a
|
||||||
|
style="color: rgb(152, 139, 75);" href="/">好莱坞榜单</a>
|
||||||
|
</h3>
|
||||||
|
<p style="float:right">人民币(亿)</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="stui-vodlist__text active col-pd clearfix">
|
||||||
|
{video:list count="12" sort_type="tuijian" d_key="key" d_val="Video" cache_life="86400"}
|
||||||
|
{include file="public/video-list-phb2" /}
|
||||||
|
{/video:list}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{video:categorytype category_type="ONE" d_key="key" d_val="val"}
|
||||||
|
{include file="public/video-panel" /}
|
||||||
|
{/video:categorytype}
|
||||||
|
|
||||||
|
<div class="stui-pannel stui-pannel-bg clearfix">
|
||||||
|
<div class="stui-pannel-box clearfix">
|
||||||
|
|
||||||
|
{video:categorytype category_type="ONE" d_key="key" d_val="val"}
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-3 col-sm-2 col-xs-1">
|
||||||
|
<div class="stui-pannel_hd">
|
||||||
|
<div class="stui-pannel__head active bottom-line clearfix">
|
||||||
|
<h3 class="title"><img src="/template/videodadi/icon/icon_12.png">{$val.v_category}总榜单</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="stui-pannel_bd clearfix">
|
||||||
|
<ul class="stui-vodlist__text active col-pd clearfix">
|
||||||
|
{video:ranklist count="10" sort_type="total" d_key="key" d_val="Video" cache_life="86400"}
|
||||||
|
{include file="public/video-list-phb" /}
|
||||||
|
{/video:ranklist}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/video:categorytype}
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
18
code/app/home/view/videoDadi/novel/getArticleInfo.html
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{extend name="baseH5" /}
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
{block name="title"}{/block}
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h1 class="logo">
|
||||||
|
<a href="/">狂雨小说</a>
|
||||||
|
</h1>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
<div style="height:50px"></div>
|
||||||
|
|
||||||
|
article.........
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"} {/block}
|
||||||
46
code/app/home/view/videoDadi/novel/getArticleList.html
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
{extend name="baseH5" /}
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
{block name="title"}{/block}
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h1 class="logo">
|
||||||
|
<a href="/">狂雨小说</a>/文章
|
||||||
|
</h1>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
<div style="height:50px"></div>
|
||||||
|
|
||||||
|
<div class="mod mod-nav">
|
||||||
|
<div id="book-nav" class="book-nav">
|
||||||
|
<ul class="clearfix">
|
||||||
|
<li><a class="on" href="/article/list.html" btn="search_category">全部</a></li>
|
||||||
|
<li><a href="/article/list-1-1.html" btn="search_category">高考作文</a></li>
|
||||||
|
<li><a href="/article/list-2-1.html" btn="search_category">小说解读</a></li>
|
||||||
|
<li><a href="/article/list-3-1.html" btn="search_category">影视解说</a></li>
|
||||||
|
<li><a href="/article/list-4-1.html" btn="search_category">王者荣耀</a></li>
|
||||||
|
<li><a href="/article/list-5-1.html" btn="search_category">日常八卦</a></li>
|
||||||
|
<li><a href="/article/list-6-1.html" btn="search_category">其它</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mod new-book">
|
||||||
|
<div class="mod-head">
|
||||||
|
<h3>深度解说列表</h3>
|
||||||
|
</div>
|
||||||
|
<div class="top-index">
|
||||||
|
<ul class="clearfix">
|
||||||
|
{foreach $arrNewsNovel as $key => $vo}
|
||||||
|
{include file="Public/articleList" /}
|
||||||
|
|
||||||
|
{/foreach}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"} {/block}
|
||||||
191
code/app/home/view/videoDadi/novel/getLibrary.html
Normal file
@@ -0,0 +1,191 @@
|
|||||||
|
{extend name="baseH5" /}
|
||||||
|
|
||||||
|
{block name="get-data"}
|
||||||
|
{novel:pagerexp page="$Request.get.page" limit="30"
|
||||||
|
n_category="$Request.route.strCategory"
|
||||||
|
sort_type="$Request.route.strOrder"
|
||||||
|
n_status="$Request.route.strStatus" d_key="d_key"
|
||||||
|
d_key="d_key"
|
||||||
|
d_val="Novel" n_num="total"
|
||||||
|
button_num="5" cache_life="86400" func="generateCategoryPager" export_name="resData" /}
|
||||||
|
|
||||||
|
{site:grm page_code="h5_novel_library" diff="$resData.p_data.page" num="40" g_key="arrGrm" /}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="title"}{site:replace code="NOVEL@GETLIBRARY@TITLE"}{/block}
|
||||||
|
{block name="keywords"}{site:replace code="NOVEL@GETLIBRARY@KEYWORDS"}{/block}
|
||||||
|
{block name="description"}{site:replace code="NOVEL@GETLIBRARY@DESCRIPTION"}{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content='{site:replace code="NOVEL@GETLIBRARY@TITLE"}' />
|
||||||
|
<meta property="og:description" content='{site:replace code="NOVEL@GETLIBRARY@DESCRIPTION"}' />
|
||||||
|
{if $Request.route.strGender == 'all' && $Request.route.strCategory == 'all' && $Request.route.strStatus == 'all'}
|
||||||
|
<meta property="og:url" content="https://{$DomainModel->d_domain}{$strCategoryIndexUrlTemp}" />
|
||||||
|
{else}
|
||||||
|
|
||||||
|
<meta property="og:url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:nflurl category="$Request.route.strCategory" status="$Request.route.strStatus" page="$Request.route.intPage"/}' />
|
||||||
|
{/if}
|
||||||
|
<meta property="og:type" content="book" />
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
{if $Request.route.strGender == 'all' && $Request.route.strCategory == 'all' && $Request.route.strStatus == 'all'}
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "CollectionPage",
|
||||||
|
"url": 'https://{$DomainModel->d_domain}{$strCategoryIndexUrlTemp}',
|
||||||
|
"name": '{site:replace code="NOVEL@GETLIBRARY@TITLE"}',
|
||||||
|
"description": '{site:replace code="NOVEL@GETLIBRARY@DESCRIPTION"}',
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{else}
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "CollectionPage",
|
||||||
|
"url": 'https://{$DomainModel->d_domain}{site:nflurl category="$Request.route.strCategory" status="$Request.route.strStatus" page="$Request.route.intPage"/}',
|
||||||
|
"name": '{site:replace code="NOVEL@GETLIBRARY@TITLE"}',
|
||||||
|
"description": '{site:replace code="NOVEL@GETLIBRARY@DESCRIPTION"}',
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
{block name="body-class"}novel_home{/block}
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h1 class="bookname">
|
||||||
|
<a href="/"
|
||||||
|
style="color:#ffffff">{$DomainModel->d_name}</a>-{site:getval code="strNovelCategoryName" /}{site:getval code="strNovelOrder" /}{site:getval code="strNovelStatus" /}免费阅读
|
||||||
|
</h1>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="nav-html"}{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="site-description">{site:replace code="NOVEL@GETLIBRARY@DESCRIPTION"}</h2>
|
||||||
|
|
||||||
|
<div class="navpf">
|
||||||
|
<nav class="sortChannel_nav">
|
||||||
|
<a class="on">分类:</a>
|
||||||
|
<a class='{eq name="$Request.route.strCategory" value="all"}on on2 {/eq} {if !$Request.route.strCategory || $Request.route.strCategory == ""}on on2 {/if}'
|
||||||
|
href='{site:nflurl category="all" status="$Request.route.strStatus" order="$Request.route.strOrder" page="$Request.route.intPage"/}'>全部分类</a>
|
||||||
|
|
||||||
|
{novel:category d_key="strCategoryPinyin" d_val="strCategoryName"}
|
||||||
|
|
||||||
|
<a class='{eq name="$Request.route.strCategory" value="$strCategoryPinyin"}on on2 {/eq}'
|
||||||
|
href='{site:nflurl category="$strCategoryPinyin" status="$Request.route.strStatus" order="$Request.route.strOrder" page="$Request.route.intPage"/}'>{$strCategoryName}</a>
|
||||||
|
{/novel:category}
|
||||||
|
</nav>
|
||||||
|
<nav class="sortChannel_nav">
|
||||||
|
<a class="on">排序:</a>
|
||||||
|
{novel:sort d_key="key" d_val="strSortName"}
|
||||||
|
<a href='{site:nflurl category="$Request.route.strCategory" status="$Request.route.strStatus" order="$key" page="$Request.route.intPage"/}'
|
||||||
|
class='{eq name="$Request.route.strOrder" value="$key"}on on2 {/eq} {if $key == "all" && $Request.route.strOrder == ""}on on2 {/if}'>{$strSortName}</a>
|
||||||
|
{/novel:sort}
|
||||||
|
</nav>
|
||||||
|
<nav class="sortChannel_nav">
|
||||||
|
<a class="on">状态:</a>
|
||||||
|
{novel:status d_key="key" d_val="strStatusName"}
|
||||||
|
<a href='{site:nflurl category="$Request.route.strCategory" status="$key" order="$Request.route.strOrder" page="$Request.route.intPage"/}'
|
||||||
|
class='{eq name="$Request.route.strStatus" value="$key"}on on2 {/eq} {if $key == "all" && $Request.route.strStatus == ""}on on2 {/if}'
|
||||||
|
btn="search_category">{$strStatusName}</a>
|
||||||
|
{/novel:status}
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title"><span>更新列表</span></h3>
|
||||||
|
<ul class="sort_list">
|
||||||
|
{foreach $resData.data as $key=>$Novel}
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<span class="s1">[{$Novel.n_category}]</span>
|
||||||
|
<span class="s2">
|
||||||
|
{if !empty($arrGrm[$key])}
|
||||||
|
{$arrGrm[$key]|raw}
|
||||||
|
{/if}
|
||||||
|
<a href='{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}' data-toggle="tooltip"
|
||||||
|
data-placement="right" title="{$Novel.n_name}">
|
||||||
|
{$Novel.n_name}
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
<span class="s4">{$Novel.n_author}</span>
|
||||||
|
<span class="s5">{:date('m-d')}</span>
|
||||||
|
</li>
|
||||||
|
{/foreach}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row sort_page_num">
|
||||||
|
{volist name="resData.p_data.pager" id="vo" key="k"}
|
||||||
|
{switch $vo.label}
|
||||||
|
{case value="上一页"}
|
||||||
|
{if $resData.p_data.page == 1}
|
||||||
|
<span>«</span>
|
||||||
|
{else}
|
||||||
|
<a href="{$vo.url}">«</a>
|
||||||
|
{/if}
|
||||||
|
{/case}
|
||||||
|
{case value="下一页"}
|
||||||
|
{if $resData.p_data.page >= $resData.p_data.total}
|
||||||
|
<span>»</span>
|
||||||
|
{else}
|
||||||
|
<a href="{$vo.url}">»</a>
|
||||||
|
{/if}
|
||||||
|
{/case}
|
||||||
|
{default /}
|
||||||
|
{if preg_match('/^\d+$/', $vo.label)}
|
||||||
|
<a href="{$vo.url}">{$vo.label}</a>
|
||||||
|
{/if}
|
||||||
|
{/switch}
|
||||||
|
{/volist}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title">
|
||||||
|
<span>封面推荐</span>
|
||||||
|
</h3>
|
||||||
|
<div class="rec-focus">
|
||||||
|
{novel:list count="8" sort_type="tuijian" d_key="d_key" d_val="Novel" p_val="page_data" cache_life="86400"}
|
||||||
|
<dl class="rec-focus-book">
|
||||||
|
<dt class="book-img">
|
||||||
|
{$arrGrm[$d_key+30]|raw}
|
||||||
|
<a href='{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>
|
||||||
|
<img height="100" width="80" class="lazyload-img" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel.n_name ?? ''} - {$Novel.n_category ?? ''}最新章节在线免费阅读">
|
||||||
|
</a>
|
||||||
|
</dt>
|
||||||
|
<dd class="book-info">
|
||||||
|
<h2>
|
||||||
|
<a href='{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>
|
||||||
|
{$Novel.n_name}
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
<p>作者:{$Novel.n_author}</p>
|
||||||
|
<p>{$Novel.n_description}</p>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
{/novel:list}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"} {/block}
|
||||||
274
code/app/home/view/videoDadi/novel/getNovelCatalog.html
Normal file
@@ -0,0 +1,274 @@
|
|||||||
|
{extend name="baseH5" /}
|
||||||
|
|
||||||
|
{block name="get-data"}
|
||||||
|
{novel:info n_id="$Request.route.intNovelId" n_key="arrNovel" n_forge_id="0" /}
|
||||||
|
{site:grm page_code="h5_novel_catalog " diff="$Request.url" num="120" g_key="arrGrm" /}
|
||||||
|
{chapter:pagerexp page="$Request.route.intPage" limit="10" n_id="$Request.route.intNovelId" d_key="d_key" d_val="chapter"
|
||||||
|
cache_life="86400" button_num="3" sort_type="$Request.route.strOrder" func="generateChapterPager" export_name="resData" /}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="title"}{site:replace code="NOVEL@GETNOVELCATALOG@TITLE"}{/block}
|
||||||
|
{block name="keywords"}{site:replace code="NOVEL@GETNOVELCATALOG@KEYWORDS"}{/block}
|
||||||
|
{block name="description"}{site:replace code="NOVEL@GETNOVELCATALOG@DESCRIPTION"}{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content="{$arrNovel['n_name']??'未知小说'}" />
|
||||||
|
<meta property="og:description" content='{site:replace code="NOVEL@GETNOVELINFO@DESCRIPTION"}' />
|
||||||
|
<meta property="og:url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}' />
|
||||||
|
<meta property="og:type" content="book" />
|
||||||
|
<meta property="og:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
<meta property="og:site_name" content="{$DomainModel->d_name}" />
|
||||||
|
<meta property="og:novel:category" content="{$arrNovel.n_category ?? ''}">
|
||||||
|
<meta property="og:novel:author" content="{$arrNovel.n_author ?? ''}">
|
||||||
|
<meta property="og:novel:book_name" content="{$arrNovel.n_name ?? ''}">
|
||||||
|
<meta property="og:novel:read_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrNovel.intFirstChapterSort"/}'>
|
||||||
|
<meta property="og:novel:status" content="{$arrNovel.n_status ?? ''}">
|
||||||
|
<meta property="og:novel:update_time" content="{$arrNovel.n_update_time ?? ''}">
|
||||||
|
<meta property="og:novel:latest_chapter_name" content="{$arrNovel.n_latest_chapter_name ?? ''}">
|
||||||
|
<meta property="og:novel:latest_chapter_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:lcpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
<!-- 可选:支持 Twitter Card -->
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta name="twitter:title" content="{$arrNovel['n_name'] ?? '未知小说'}" />
|
||||||
|
<meta name="twitter:description" content='{site:replace code="NOVEL@GETNOVELINFO@DESCRIPTION"}' />
|
||||||
|
<meta name="twitter:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "Book",
|
||||||
|
"name": "{$arrNovel['n_name'] ?? '未知小说'}",
|
||||||
|
"description": "{$arrNovel['n_description'] ??'暂无简介'}",
|
||||||
|
"author": {
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "{$arrNovel['n_author'] ??'佚名'}"
|
||||||
|
},
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
"url": "https://{$DomainModel->d_domain}"
|
||||||
|
},
|
||||||
|
"datePublished": "{$arrNovel['n_update_time'] ?? time()}",
|
||||||
|
"image": "{$arrNovel.n_cover_path ?? ''}",
|
||||||
|
"url": 'https://{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}',
|
||||||
|
"genre": "{$arrNovel.n_category ??''}",
|
||||||
|
"inLanguage": "zh-CN",
|
||||||
|
"bookFormat": "https://{$DomainModel->d_domain}/EBook",
|
||||||
|
"aggregateRating": {
|
||||||
|
"@type": "AggregateRating",
|
||||||
|
"ratingValue": "4.5",
|
||||||
|
"reviewCount": "100",
|
||||||
|
},
|
||||||
|
"itemListElement": [
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 1,
|
||||||
|
"name": "首页",
|
||||||
|
"item": "https://{$DomainModel->d_domain}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 2,
|
||||||
|
"name": "{$arrNovel.n_category ??''}",
|
||||||
|
"item": 'https://{site:nflurl category="$arrNovel.n_category_pinyin" order="all" status="all" page="1"/}'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 3,
|
||||||
|
"name": "{$arrNovel['n_name']}",
|
||||||
|
"item": '{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head-js"}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="body-class"}novel_info{/block}
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h2 class="bookname">
|
||||||
|
<a href="/" style="color:#ffffff">{$DomainModel->d_name}</a>
|
||||||
|
</h2>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="nav-html"}
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="breadcrumb" aria-label="breadcrumb">
|
||||||
|
<ol itemscope itemtype="https://schema.org/BreadcrumbList">
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<a href="/" itemprop="item">
|
||||||
|
<span itemprop="name">首页</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="1" />
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<?php $arrNovel['n_category_pinyin'] ?? $arrNovel['n_category_pinyin'] = 'all'?>
|
||||||
|
<a href='{site:nflurl category="$arrNovel.n_category_pinyin" order="all" status="all" page="1"/}' itemprop="item">
|
||||||
|
<span itemprop="name">{$arrNovel.n_category}</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="2" />
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<a href='{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}' itemprop="item">
|
||||||
|
<span itemprop="name">{$arrNovel['n_name']}</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="3" />
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<a href='{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}' itemprop="item">
|
||||||
|
<span itemprop="name">目录</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="3" />
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h1 class="site-description ">{$arrNovel['n_name']}最新章节 - {$arrNovel['n_author']} - {$DomainModel->d_name}</h1>
|
||||||
|
<div class="block-box">
|
||||||
|
<div class="book-main">
|
||||||
|
<div class="book-img">
|
||||||
|
<img src="/static/img/default.jpg" data-src="{$arrNovel.n_cover_path ?? ''}"
|
||||||
|
alt="{$arrNovel['n_name'] ?? ''}小说封面 - {$arrNovel.n_author}最新章节" class="lazy lazyload-img">
|
||||||
|
</div>
|
||||||
|
<div class="book-info">
|
||||||
|
<div class="bookname">
|
||||||
|
<h2>{$arrNovel.n_name}</h2><span class="author">{$arrNovel.n_author}
|
||||||
|
著</span>
|
||||||
|
</div>
|
||||||
|
<p class="tag"><span class="blue">{$arrNovel.n_category}</span><span
|
||||||
|
class="green">{$arrNovel.n_status}</span>
|
||||||
|
</p>
|
||||||
|
<p class="update"><span>最近更新:</span><a href={site:lcpurl n_id="$arrNovel.n_id"
|
||||||
|
n_py="$arrNovel.n_name_pinyin" /}>{$arrNovel.n_latest_chapter_name ?? "" }</a></p>
|
||||||
|
<p class="time"><span>更新时间:</span>{$arrNovel.n_update_time} </p>
|
||||||
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
|
<div class="book-detail-btn">
|
||||||
|
<ul class="btn-group">
|
||||||
|
<li class="btn-group-cell"><a class="btn-normal abt1" onclick="addBookshelfFun()">加入书架</a><a
|
||||||
|
class="btn-normal abt2"
|
||||||
|
href='{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrNovel.intFirstChapterSort"/}'>开始阅读</a><a
|
||||||
|
class="btn-normal abt3"
|
||||||
|
href='{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'>章节目录</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="description" style="font-size: 12px;padding:0px 10px 10px 10px; text-indent: 15px;">
|
||||||
|
{$arrNovel.n_description}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3 class="wrap-title">章节列表(第{$Request.route.intPage}页)
|
||||||
|
{if $Request.route.strOrder == 'zheng'}
|
||||||
|
<a href='{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="dao" page="1"/}'
|
||||||
|
class="habt y">点击切换倒序</a>
|
||||||
|
{else}
|
||||||
|
<a href='{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'
|
||||||
|
class="habt y">点击切换正序</a>
|
||||||
|
{/if}
|
||||||
|
</h3>
|
||||||
|
<div class="block-box">
|
||||||
|
|
||||||
|
<!-- 目录下拉分页-->
|
||||||
|
{include file="public/allChapterPage" start="1"/}
|
||||||
|
|
||||||
|
<ul class="chapter-list">
|
||||||
|
{foreach $resData.data as $key=>$Chapter}
|
||||||
|
<li>
|
||||||
|
{if !empty($arrGrm[$key])}
|
||||||
|
{$arrGrm[$key]|raw}
|
||||||
|
{/if}
|
||||||
|
<a href='{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$Chapter.c_sort_num" c_page="0"/}'
|
||||||
|
title="{$arrNovel['n_name']} {$Chapter.c_name}">{$Chapter.c_name}</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
{/foreach}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
{include file="public/allChapterPage" /}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title"><span>完结推荐</span></h3>
|
||||||
|
<div class="rec-focus">
|
||||||
|
{novel:list count="6" n_category="$arrNovel.n_category_pinyin" n_status="wanjie" d_key="d_key" d_val="Novel" p_val="page_data" cache_life="86400"}
|
||||||
|
<dl class="rec-focus-book">
|
||||||
|
<dt class="book-img">
|
||||||
|
{$arrGrm[$d_key+110]|raw}
|
||||||
|
<a href='{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'><img
|
||||||
|
height="100" width="80" class="lazyload-img" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel.n_name ?? ''} - {$Novel.n_category ?? ''}最新章节在线免费阅读"></a></dt>
|
||||||
|
<dd class="book-info">
|
||||||
|
<h2><a href='{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
</h2>
|
||||||
|
<p>作者:{$Novel.n_author}</p>
|
||||||
|
<p>{$Novel.n_description}</p>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
{/novel:list}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title"><span>相邻小说</span></h3>
|
||||||
|
<div class="description" style="font-size: 12px;padding:0px 10px 10px 10px; text-indent: 15px;">
|
||||||
|
|
||||||
|
{$arrNovel.strFocus ?? ""} 。看小说就来{$DomainModel->d_name} {$DomainModel->d_domain}...
|
||||||
|
</div>
|
||||||
|
<div class="rec-focus" style="font-size:12px;">
|
||||||
|
{volist name='$arrNovel.arrRelateveNovel' id='Novel'}
|
||||||
|
<a href='{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
{volist name='arrNovel.n_forge_novel' id='ForgeNovel'}
|
||||||
|
<a
|
||||||
|
href='{site:nnurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" n_fid="$ForgeNovel.n_forge_id"/}'>{$ForgeNovel.n_forge_title}</a>
|
||||||
|
{/volist}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const strNovelId = `{$arrNovel.n_id}`;
|
||||||
|
const arrNovel = {
|
||||||
|
'n_id' : `{$arrNovel['n_id']}`,
|
||||||
|
'n_name_pinyin' : `{$arrNovel['n_name_pinyin']}`,
|
||||||
|
'n_cover_path' : `{$arrNovel['n_cover_path']}`,
|
||||||
|
'n_name' : `{$arrNovel['n_name']}`,
|
||||||
|
'n_author' : `{$arrNovel['n_author']}`,
|
||||||
|
'n_status' : `{$arrNovel['n_status']}`,
|
||||||
|
'n_description' : `{$arrNovel['n_description']}`,
|
||||||
|
'n_latest_chapter_name' : `{$arrNovel['n_latest_chapter_name']}`,
|
||||||
|
'n_update_time' : `{$arrNovel['n_update_time']}`,
|
||||||
|
'c_sort_num' : 1,
|
||||||
|
'c_name' : `第一章`,
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
252
code/app/home/view/videoDadi/novel/getNovelChapter.html
Normal file
@@ -0,0 +1,252 @@
|
|||||||
|
{extend name="baseH5" /}
|
||||||
|
|
||||||
|
{block name="get-data"}
|
||||||
|
|
||||||
|
{site:grm page_code="h5_novel_chapter" diff="$Request.url" num="20" g_key="arrGrm" /}
|
||||||
|
{novel:info n_id="$Request.route.intNovelId" n_key="arrNovel" n_forge_id="0" /}
|
||||||
|
{chapter:info n_id="$Request.route.intNovelId" c_sort_num="$Request.route.intChapterSort"
|
||||||
|
c_page="$Request.route.intChapterPage" c_key="arrChapter" /}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="title"}{site:replace code="NOVEL@GETNOVELCHAPTER@TITLE"}{/block}
|
||||||
|
{block name="keywords"}{site:replace code="NOVEL@GETNOVELCHAPTER@KEYWORDS"}{/block}
|
||||||
|
{block name="description"}{site:replace code="NOVEL@GETNOVELCHAPTER@DESCRIPTION"}{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
|
||||||
|
<meta property="og:title" content="{$arrNovel['n_name']??'未知小说'} {$arrChapter.c_name} - {$DomainModel->d_name}" />
|
||||||
|
<meta property="og:description" content='{site:replace code="NOVEL@GETNOVELCHAPTER@DESCRIPTION"}' />
|
||||||
|
<meta property="og:url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}' />
|
||||||
|
<meta property="og:type" content="book" />
|
||||||
|
<meta property="og:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
<meta property="og:site_name" content="{$DomainModel->d_name}" />
|
||||||
|
<meta property="og:novel:category" content="{$arrNovel.n_category ?? ''}">
|
||||||
|
<meta property="og:novel:author" content="{$arrNovel.n_author ?? ''}">
|
||||||
|
<meta property="og:novel:book_name" content="{$arrNovel.n_name ?? ''}">
|
||||||
|
<meta property="og:novel:read_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.c_sort_num"/}'>
|
||||||
|
<meta property="og:novel:status" content="{$arrNovel.n_status ?? ''}">
|
||||||
|
<meta property="og:novel:update_time" content="{$arrNovel.n_update_time ?? ''}">
|
||||||
|
<meta property="og:novel:latest_chapter_name" content="{$arrChapter.c_name}">
|
||||||
|
<meta property="og:novel:latest_chapter_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:lcpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
<!-- 可选:支持 Twitter Card -->
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta name="twitter:title" content="{$arrNovel['n_name']??'未知小说'} {$arrChapter.c_name} - {$DomainModel->d_name}" />
|
||||||
|
<meta name="twitter:description" content="{$strDescription ?? '暂无简介'}" />
|
||||||
|
<meta name="twitter:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "Book",
|
||||||
|
"name": "{$arrNovel['n_name'] ?? '未知小说'}",
|
||||||
|
"author": {
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "{$arrNovel['n_author'] ??'佚名'}"
|
||||||
|
},
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
"url": "https://{$DomainModel->d_domain}"
|
||||||
|
},
|
||||||
|
"image": "{$arrNovel.n_cover_path ?? ''}",
|
||||||
|
"url":'https://{$DomainModel->d_domain}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.c_sort_num" c_page="0"/}',
|
||||||
|
"inLanguage": "zh-CN",
|
||||||
|
"genre": "{$arrNovel.n_category ??''}",
|
||||||
|
"datePublished": "{$arrNovel['n_update_time'] ?? time()}",
|
||||||
|
"hasPart": {
|
||||||
|
"@type": "CreativeWork",
|
||||||
|
"name": "{$arrChapter.c_name ?? ''}",
|
||||||
|
"url":'https://{$DomainModel->d_domain}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.c_sort_num" c_page="0"/}',
|
||||||
|
"description": '{site:replace code="NOVEL@GETNOVELCHAPTER@DESCRIPTION"}'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head-js"}
|
||||||
|
<script src="/template/default/h5/js/yueduqsbs.js"></script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="body-class"}jjdfjkozd{/block}
|
||||||
|
{block name="body-id"}kkasdfei{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h2 class="bookname">
|
||||||
|
<a href="/" style="color:#ffffff">{$DomainModel->d_name}</a>
|
||||||
|
</h2>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="nav-html"}
|
||||||
|
<nav class="breadcrumb" aria-label="breadcrumb">
|
||||||
|
<ol itemscope itemtype="https://schema.org/BreadcrumbList">
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<a href="/" itemprop="item">
|
||||||
|
<span itemprop="name">首页</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="1" />
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<?php $arrNovel['n_category_pinyin'] ?? $arrNovel['n_category_pinyin'] = 'all'?>
|
||||||
|
<a href='{site:nflurl gender="" category="$arrNovel.n_category_pinyin" order="all" status="all" page="1"/}' itemprop="item">
|
||||||
|
<span itemprop="name">{$arrNovel.n_category}</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="2" />
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<a href='{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}' itemprop="item">
|
||||||
|
<span itemprop="name">{$arrNovel['n_name']}</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="3" />
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<a href='{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}' itemprop="item">
|
||||||
|
<span itemprop="name">{$arrChapter.c_name ?? ''}</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="3" />
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
<h1 class="site-description ">{$arrNovel['n_name']}最新章节 - {$arrChapter.c_name ?? ''}</h1>
|
||||||
|
|
||||||
|
<div class="set">
|
||||||
|
<div id="lightdiv" class="set1" onclick="nr_setbg('light')">关灯</div>
|
||||||
|
<div id="huyandiv" class="set1" onclick="nr_setbg('huyan')">护眼</div>
|
||||||
|
<div class="set2">
|
||||||
|
<span>字体:</span>
|
||||||
|
<span id="fontbig" onclick="nr_setbg('big')">大</span>
|
||||||
|
<span id="fontmiddle" onclick="nr_setbg('middle')">中</span>
|
||||||
|
<span id="fontsmall" onclick="nr_setbg('small')">小</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content">
|
||||||
|
<h2 id="chaptername" class="chaptername">{$arrChapter.c_name}</h2>
|
||||||
|
<div class="chapter-page-btn">
|
||||||
|
{$arrGrm[1]|raw}
|
||||||
|
<ul>
|
||||||
|
{if $arrChapter && $arrChapter.c_sort_num && $arrChapter.c_sort_num == 1 && $arrChapter.c_page == 0}
|
||||||
|
<li><a href='javascript:'>上一页</a></li>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{if $arrChapter.pre_chapter && $arrChapter.pre_chapter.c_sort_num}
|
||||||
|
<li><a
|
||||||
|
href='{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.pre_chapter.c_sort_num" c_page="$arrChapter.pre_chapter.c_page"/}'>上一页</a>
|
||||||
|
</li>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<li class="mulu"><a href='{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'>章节目录</a></li>
|
||||||
|
{if $arrChapter.next_chapter && $arrChapter.next_chapter.c_sort_num}
|
||||||
|
<li><a
|
||||||
|
href='{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.next_chapter.c_sort_num" c_page="$arrChapter.next_chapter.c_page"/}'>下一页</a>
|
||||||
|
</li>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{$arrGrm[2]|raw}
|
||||||
|
<div class="txt" id="txt">
|
||||||
|
{$arrGrm[3]|raw}
|
||||||
|
<script>document.writeln(qsbs.bb('{$arrChapter.c_content}'));</script>
|
||||||
|
{$arrGrm[4]|raw}
|
||||||
|
</div>
|
||||||
|
<div class="chapter-page-btn">
|
||||||
|
{$arrGrm[5]|raw}
|
||||||
|
<ul>
|
||||||
|
{if $arrChapter && $arrChapter.c_sort_num && $arrChapter.c_sort_num == 1 && $arrChapter.c_page == 0}
|
||||||
|
<li><a href='javascript:'>上一页</a></li>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{if $arrChapter.pre_chapter && $arrChapter.pre_chapter.c_sort_num}
|
||||||
|
<li><a
|
||||||
|
href='{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.pre_chapter.c_sort_num" c_page="$arrChapter.pre_chapter.c_page"/}'>上一页</a>
|
||||||
|
</li>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<li class="mulu"><a href='{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'>章节目录</a></li>
|
||||||
|
{if $arrChapter.next_chapter && $arrChapter.next_chapter.c_sort_num}
|
||||||
|
<li><a
|
||||||
|
href='{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.next_chapter.c_sort_num" c_page="$arrChapter.next_chapter.c_page"/}'>下一页</a>
|
||||||
|
</li>
|
||||||
|
{/if}
|
||||||
|
</ul>
|
||||||
|
{$arrGrm[6]|raw}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title"><span>完结推荐</span></h3>
|
||||||
|
<div class="rec-focus">
|
||||||
|
{novel:list count="6" n_category="$arrNovel.n_category_pinyin" n_status="wanjie" d_key="d_key" d_val="Novel"
|
||||||
|
p_val="page_data" cache_life="86400"}
|
||||||
|
<dl class="rec-focus-book">
|
||||||
|
<dt class="book-img">
|
||||||
|
{$arrGrm[$d_key+6]|raw}
|
||||||
|
<a
|
||||||
|
href='{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'><img
|
||||||
|
height="100" width="80" class="lazyload-img" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel.n_name ?? ''} - {$Novel.n_category ?? ''}最新章节在线免费阅读"></a></dt>
|
||||||
|
<dd class="book-info">
|
||||||
|
<h2><a
|
||||||
|
href='{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
</h2>
|
||||||
|
<p>作者:{$Novel.n_author}</p>
|
||||||
|
<p>{$Novel.n_description}</p>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
{/novel:list}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title"><span>相邻小说</span></h3>
|
||||||
|
<div class="description" style="font-size: 12px;padding:0px 10px 10px 10px; text-indent: 15px;">
|
||||||
|
|
||||||
|
{$arrNovel.strFocus ?? ""} 。看小说就来{$DomainModel->d_name} {$DomainModel->d_domain}...
|
||||||
|
</div>
|
||||||
|
<div class="rec-focus" style="font-size:12px;">
|
||||||
|
{volist name='arrNovel.arrRelateveNovel' id='Novel'}
|
||||||
|
<a
|
||||||
|
href='{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
{volist name="arrNovel.n_forge_novel" id="ForgeNovel" key="key"}
|
||||||
|
<a
|
||||||
|
href='{site:nnurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" n_fid="$ForgeNovel.n_forge_id"/}'>{$ForgeNovel.n_forge_title}</a>
|
||||||
|
{/volist}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const strNovelId = `{$arrNovel.n_id}`;
|
||||||
|
const arrNovel = {
|
||||||
|
'n_id' : `{$arrNovel['n_id']}`,
|
||||||
|
'n_name_pinyin' : `{$arrNovel['n_name_pinyin']}`,
|
||||||
|
'n_cover_path' : `{$arrNovel['n_cover_path']}`,
|
||||||
|
'n_name' : `{$arrNovel['n_name']}`,
|
||||||
|
'n_author' : `{$arrNovel['n_author']}`,
|
||||||
|
'n_status' : `{$arrNovel['n_status']}`,
|
||||||
|
'n_description' : `{$arrNovel['n_description']}`,
|
||||||
|
'n_latest_chapter_name' : `{$arrNovel['n_latest_chapter_name']}`,
|
||||||
|
'n_update_time' : `{$arrNovel['n_update_time']}`,
|
||||||
|
'c_sort_num' : 1,
|
||||||
|
'c_name' : `第一章`,
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
292
code/app/home/view/videoDadi/novel/getNovelInfo.html
Normal file
@@ -0,0 +1,292 @@
|
|||||||
|
$Novel.n_id{extend name="baseH5" /}
|
||||||
|
|
||||||
|
{block name="get-data"}
|
||||||
|
{if $Request.route.intNovelId}
|
||||||
|
{novel:info n_id="$Request.route.intNovelId" n_key="arrNovel" n_forge_id="$Request.route.intForgeId" /}
|
||||||
|
{else}
|
||||||
|
{novel:info n_id="$DomainModel->info_id" n_key="arrNovel" n_forge_id="0" /}
|
||||||
|
{/if}
|
||||||
|
{site:grm page_code="h5_novel_info" diff="$arrNovel.n_id" num="120" g_key="arrGrm" /}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="title"}
|
||||||
|
{if $DomainModel->info_id == $Request.route.intNovelId || empty($Request.route.intNovelId)}
|
||||||
|
{site:replace code="INDEX@INDEX@TITLE"}
|
||||||
|
{else}
|
||||||
|
{site:replace code="NOVEL@GETNOVELINFO@TITLE" diff="$Request.route.intNovelId" /}
|
||||||
|
{/if}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{block name="keywords"}
|
||||||
|
{if $DomainModel->info_id == $Request.route.intNovelId || empty($Request.route.intNovelId)}
|
||||||
|
{site:replace code="INDEX@INDEX@KEYWORDS"}
|
||||||
|
{else}
|
||||||
|
{site:replace code="NOVEL@GETNOVELINFO@KEYWORDS" diff="$Request.route.intNovelId"}
|
||||||
|
{/if}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="description"}
|
||||||
|
{if $DomainModel->info_id == $Request.route.intNovelId || empty($Request.route.intNovelId)}
|
||||||
|
{site:replace code="INDEX@INDEX@DESCRIPTION"}
|
||||||
|
{else}
|
||||||
|
{site:replace code="NOVEL@GETNOVELINFO@DESCRIPTION" diff="$Request.route.intNovelId"}
|
||||||
|
{/if}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content="{$arrNovel['n_name']??'未知小说'}" />
|
||||||
|
<meta property="og:description"
|
||||||
|
content='{site:replace code="NOVEL@GETNOVELINFO@DESCRIPTION" diff="$Request.route.intNovelId"}' />
|
||||||
|
<meta property="og:url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}' />
|
||||||
|
<meta property="og:type" content="book" />
|
||||||
|
<meta property="og:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
<meta property="og:site_name" content="{$DomainModel->d_name}" />
|
||||||
|
<meta property="og:novel:category" content="{$arrNovel.n_category ?? ''}">
|
||||||
|
<meta property="og:novel:author" content="{$arrNovel.n_author ?? ''}">
|
||||||
|
<meta property="og:novel:book_name" content="{$arrNovel.n_name ?? ''}">
|
||||||
|
<meta property="og:novel:read_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrNovel.intFirstChapterSort"/}'>
|
||||||
|
<meta property="og:novel:status" content="{$arrNovel.n_status ?? ''}">
|
||||||
|
<meta property="og:novel:update_time" content="{$arrNovel.n_update_time ?? ''}">
|
||||||
|
<meta property="og:novel:latest_chapter_name" content="{$arrNovel.n_latest_chapter_name ?? ''}">
|
||||||
|
<meta property="og:novel:latest_chapter_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:lcpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
<!-- 可选:支持 Twitter Card -->
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta name="twitter:title" content="{$arrNovel['n_name'] ?? '未知小说'}" />
|
||||||
|
<meta name="twitter:description"
|
||||||
|
content='{site:replace code="NOVEL@GETNOVELINFO@DESCRIPTION" diff="$Request.route.intNovelId"}' />
|
||||||
|
<meta name="twitter:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "Book",
|
||||||
|
"name": "{$arrNovel['n_name'] ?? '未知小说'}",
|
||||||
|
"description": "{$arrNovel['n_description'] ??'暂无简介'}",
|
||||||
|
"author": {
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "{$arrNovel['n_author'] ??'佚名'}"
|
||||||
|
},
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
"url": "https://{$DomainModel->d_domain}"
|
||||||
|
},
|
||||||
|
"datePublished": "{$arrNovel['n_update_time'] ?? time()}",
|
||||||
|
"image": "{$arrNovel.n_cover_path ?? ''}",
|
||||||
|
"url": 'https://{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}',
|
||||||
|
"genre": "{$arrNovel.n_category ??''}",
|
||||||
|
"inLanguage": "zh-CN",
|
||||||
|
"bookFormat": "https://{$DomainModel->d_domain}/EBook",
|
||||||
|
"aggregateRating": {
|
||||||
|
"@type": "AggregateRating",
|
||||||
|
"ratingValue": "4.5",
|
||||||
|
"reviewCount": "100",
|
||||||
|
},
|
||||||
|
"itemListElement": [
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 1,
|
||||||
|
"name": "首页",
|
||||||
|
"item": "https://{$DomainModel->d_domain}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 2,
|
||||||
|
"name": "{$arrNovel.n_category ??''}",
|
||||||
|
"item": 'https://{site:nflurl category="$arrNovel.n_category_pinyin" order="all" status="all" page="1"/}'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 3,
|
||||||
|
"name": "{$arrNovel['n_name']}",
|
||||||
|
"item": '{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{block name="head-js"}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="body-class"}novel_info{/block}
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h2 class="bookname">
|
||||||
|
<a href="/" style="color:#ffffff">{$DomainModel->d_name}</a>
|
||||||
|
</h2>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="nav-html"}
|
||||||
|
<nav class="breadcrumb" aria-label="breadcrumb">
|
||||||
|
<ol itemscope itemtype="https://schema.org/BreadcrumbList">
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<a href="/" itemprop="item">
|
||||||
|
<span itemprop="name">首页</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="1" />
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<?php $arrNovel['n_category_pinyin'] ?? $arrNovel['n_category_pinyin'] = 'all'?>
|
||||||
|
<a href='{site:nflurl category="$arrNovel.n_category_pinyin" order="all" status="all" page="1"/}'
|
||||||
|
itemprop="item">
|
||||||
|
<span itemprop="name">{$arrNovel.n_category}</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="2" />
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||||
|
<a href='{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}' itemprop="item">
|
||||||
|
<span itemprop="name">{$arrNovel['n_name']}</span>
|
||||||
|
</a>
|
||||||
|
<meta itemprop="position" content="3" />
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
<h1 class="site-description ">{$arrNovel['n_name']}最新章节 - {$arrNovel['n_author']} - {$DomainModel->d_name}</h1>
|
||||||
|
{if $DomainModel->info_id == $Request.route.intNovelId || empty($Request.route.intNovelId)}
|
||||||
|
<h4 class="site-description ">{$DomainModel->d_index_description}</h4>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<div class="block-box">
|
||||||
|
<div class="book-main">
|
||||||
|
<div class="book-img">
|
||||||
|
<img src="/static/img/default.jpg" data-src="{$arrNovel.n_cover_path ?? ''}"
|
||||||
|
alt="{$arrNovel['n_name'] ?? ''}小说封面 - {$arrNovel.n_author}最新章节" class="lazy lazyload-img">
|
||||||
|
</div>
|
||||||
|
<div class="book-info">
|
||||||
|
<div class="bookname">
|
||||||
|
<h2>{$arrNovel.n_name}</h2><span class="author">{$arrNovel.n_author}
|
||||||
|
著</span>
|
||||||
|
</div>
|
||||||
|
<p class="tag"><span class="blue">{$arrNovel.n_category}</span><span
|
||||||
|
class="green">{$arrNovel.n_status}</span>
|
||||||
|
</p>
|
||||||
|
<p class="update"><span>最近更新:</span><a href='{site:lcpurl n_id="$arrNovel.n_id"
|
||||||
|
n_py="$arrNovel.n_name_pinyin" /}'>{$arrNovel.n_latest_chapter_name ?? ""}</a></p>
|
||||||
|
<p class="time"><span>更新时间:</span>{$arrNovel.n_update_time} </p>
|
||||||
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
|
<div class="book-detail-btn">
|
||||||
|
<ul class="btn-group">
|
||||||
|
<li class="btn-group-cell"><a class="btn-normal abt1" onclick="addBookshelfFun()">加入书架</a><a
|
||||||
|
class="btn-normal abt2"
|
||||||
|
href='{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrNovel.intFirstChapterSort"/}'>开始阅读</a><a
|
||||||
|
class="btn-normal abt3"
|
||||||
|
href='{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'>章节目录</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="description" style="font-size: 12px;padding:0px 10px 10px 10px; text-indent: 15px;">
|
||||||
|
{$arrNovel.n_description}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3 class="wrap-title">最新章节</h3>
|
||||||
|
<div class="block-box">
|
||||||
|
<ul class="chapter-list">
|
||||||
|
{chapter:list count="10" sort_type="dao" n_id="$arrNovel.n_id" d_key="d_key" d_val="Chapter" cache_life="86400"}
|
||||||
|
<li>
|
||||||
|
{$arrGrm[$d_key]|raw}
|
||||||
|
<a
|
||||||
|
href='{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$Chapter.c_sort_num" c_page="0"/}'>{$Chapter.c_name}<span></span></a>
|
||||||
|
</li>
|
||||||
|
{/chapter:list}
|
||||||
|
</ul>
|
||||||
|
<a href='{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'
|
||||||
|
class="btn-mulu">查看更多章节...</a>
|
||||||
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
|
<h3 class="wrap-title">章节列表</h3>
|
||||||
|
<div class="block-box">
|
||||||
|
<ul class="chapter-list">
|
||||||
|
{chapter:list count="100" sort_type="zheng" n_id="$arrNovel.n_id" d_key="d_key" d_val="Chapter"
|
||||||
|
cache_life="86400"}
|
||||||
|
<li>
|
||||||
|
{$arrGrm[$d_key+10]|raw}
|
||||||
|
<a
|
||||||
|
href='{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$Chapter.c_sort_num" c_page="0"/}'>{$Chapter.c_name}<span></span></a>
|
||||||
|
</li>
|
||||||
|
{/chapter:list}
|
||||||
|
</ul>
|
||||||
|
<a href='{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'
|
||||||
|
class="btn-mulu">查看更多章节...</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title"><span>完结推荐</span></h3>
|
||||||
|
<div class="rec-focus">
|
||||||
|
{novel:list count="6" n_category="$arrNovel.n_category_pinyin" n_status="wanjie" d_key="d_key" d_val="Novel"
|
||||||
|
p_val="page_data" cache_life="86400"}
|
||||||
|
<dl class="rec-focus-book">
|
||||||
|
<dt class="book-img">
|
||||||
|
{$arrGrm[$d_key+110]|raw}
|
||||||
|
<a href='{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'><img height="100"
|
||||||
|
width="80" class="lazyload-img" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel.n_name ?? ''} - {$Novel.n_category ?? ''}最新章节在线免费阅读"></a>
|
||||||
|
</dt>
|
||||||
|
<dd class="book-info">
|
||||||
|
<h2><a href='{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
</h2>
|
||||||
|
<p>作者:{$Novel.n_author}</p>
|
||||||
|
<p>{$Novel.n_description}</p>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
{/novel:list}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title"><span>相邻小说</span></h3>
|
||||||
|
<div class="description" style="font-size: 12px;padding:0px 10px 10px 10px; text-indent: 15px;">
|
||||||
|
|
||||||
|
{$arrNovel.strFocus ?? ""} 。看小说就来{$DomainModel->d_name} {$DomainModel->d_domain}...
|
||||||
|
</div>
|
||||||
|
<div class="rec-focus" style="font-size:12px;">
|
||||||
|
{volist name='$arrNovel.arrRelateveNovel' id='Novel'}
|
||||||
|
<a href='{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
{volist name='arrNovel.n_forge_novel' id='ForgeNovel'}
|
||||||
|
<a
|
||||||
|
href='{site:nnurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" n_fid="$ForgeNovel.n_forge_id"/}'>{$ForgeNovel.n_forge_title}</a>
|
||||||
|
{/volist}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const strNovelId = `{$arrNovel.n_id}`;
|
||||||
|
const arrNovel = {
|
||||||
|
'n_id' : `{$arrNovel['n_id']}`,
|
||||||
|
'n_name_pinyin' : `{$arrNovel['n_name_pinyin']}`,
|
||||||
|
'n_cover_path' : `{$arrNovel['n_cover_path']}`,
|
||||||
|
'n_name' : `{$arrNovel['n_name']}`,
|
||||||
|
'n_author' : `{$arrNovel['n_author']}`,
|
||||||
|
'n_status' : `{$arrNovel['n_status']}`,
|
||||||
|
'n_description' : `{$arrNovel['n_description']}`,
|
||||||
|
'n_latest_chapter_name' : `{$arrNovel['n_latest_chapter_name']}`,
|
||||||
|
'n_update_time' : `{$arrNovel['n_update_time']}`,
|
||||||
|
'c_sort_num' : 1,
|
||||||
|
'c_name' : `第一章`,
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
126
code/app/home/view/videoDadi/novel/getSearchNovel.html
Normal file
@@ -0,0 +1,126 @@
|
|||||||
|
{extend name="baseH5" /}
|
||||||
|
|
||||||
|
{block name="get-data"}
|
||||||
|
{novel:pagerexp page="$Request.get.page" limit="30"
|
||||||
|
key="$Request.get.keyword"
|
||||||
|
d_key="d_key"
|
||||||
|
d_val="Novel"
|
||||||
|
p_val="page_data" button_num="10" cache_life="86400" func="generateSearchPager" export_name="resData" /}
|
||||||
|
{site:grm page_code="h5_novel_search" diff="$Request.url" num="30" g_key="arrGrm" /}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{block name="title"}{site:replace code="NOVEL@GETSEARCHNOVEL@TITLE"}{/block}
|
||||||
|
{block name="keywords"}{site:replace code="NOVEL@GETSEARCHNOVEL@KEYWORDS"}{/block}
|
||||||
|
{block name="description"}{site:replace code="NOVEL@GETSEARCHNOVEL@DESCRIPTION"}{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content=‘{site:replace code="NOVEL@GETSEARCHNOVEL@TITLE"} />
|
||||||
|
<meta property="og:description" content='{site:replace code="NOVEL@GETSEARCHNOVEL@DESCRIPTION"}' />
|
||||||
|
<meta property="og:url" content="https://{$DomainModel->d_domain}{site:souurl key='$Request.get.keyword' p='1'/}" />
|
||||||
|
<meta property="og:type" content="book" />
|
||||||
|
<meta property="og:site_name" content="{$DomainModel->d_name}">
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
|
<meta name="twitter:title" content="{$Request.get.keyword} - {$DomainModel->d_name}搜索 - 第{$Request.get.intPage}页">
|
||||||
|
<meta name="twitter:description" content="{$Request.get.keyword}搜索结果第{$Request.get.intPage}页,免费阅读小说,快来体验!">
|
||||||
|
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "SearchResultsPage",
|
||||||
|
"url": "https://{$DomainModel->d_name}{site:souurl key='$Request.get.keyword' p='1'/}",
|
||||||
|
"name": "{$DomainModel->d_name} - {$DomainModel->d_name}搜索 第{$Request.get.intPage}页",
|
||||||
|
"description": "搜索‘{$Request.get.keyword}’结果第{$Request.get.intPage}页,提供{$Request.get.keyword}创作的小说免费阅读。",
|
||||||
|
"datePublished": "{$arrNovel['n_update_time'] ?? time()}",
|
||||||
|
"mainEntity": {
|
||||||
|
"@type": "Book",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
"author": {
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "{$DomainModel->d_name}"
|
||||||
|
},
|
||||||
|
"url": "https://{$DomainModel->d_domain}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
{block name="body-class"}novel_so novel_search_page{/block}
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h2 class="bookname">
|
||||||
|
<a href="/" style="color:#ffffff">{$DomainModel->d_name}</a>
|
||||||
|
</h2>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h1><span>{$Request.get.keyword}</span>搜索结果 - {$DomainModel->d_name} 第{$resData.p_data.page}页</h1>
|
||||||
|
{if $resData.p_data.total < 1} <p style="text-align: center;line-height: 60px">没有相关数据</p>
|
||||||
|
{else}
|
||||||
|
|
||||||
|
<div class="rec-focus">
|
||||||
|
{foreach $resData.data as $key=>$Novel}
|
||||||
|
<dl class="rec-focus-book">
|
||||||
|
<dt class="book-img">
|
||||||
|
{if !empty($arrGrm[$key])}
|
||||||
|
{$arrGrm[$key]|raw}
|
||||||
|
{/if}
|
||||||
|
<a href='{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>
|
||||||
|
<img height="100" width="80" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel['n_name'] ?? ''}小说封面 - {$Novel.n_author}最新章节" class="lazy lazyload-img">
|
||||||
|
</a>
|
||||||
|
</dt>
|
||||||
|
<dd class="book-info">
|
||||||
|
<h2><a href='{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a></h2>
|
||||||
|
<p>作者:{$Novel.n_author}</p>
|
||||||
|
<p>{$Novel.n_description}</p>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
{/foreach}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row sort_page_num">
|
||||||
|
{volist name="$resData.p_data.pager" id="vo" key="k"}
|
||||||
|
{switch $vo.label}
|
||||||
|
{case value="上一页"}
|
||||||
|
{if $resData.p_data.page == 1}
|
||||||
|
<span>«</span>
|
||||||
|
{else}
|
||||||
|
<a href="{$vo.url}">«</a>
|
||||||
|
{/if}
|
||||||
|
{/case}
|
||||||
|
{case value="下一页"}
|
||||||
|
{if $resData.p_data.page >= $resData.p_data.total}
|
||||||
|
<span>»</span>
|
||||||
|
{else}
|
||||||
|
<a href="{$vo.url}">»</a>
|
||||||
|
{/if}
|
||||||
|
{/case}
|
||||||
|
{default /}
|
||||||
|
{if preg_match('/^\d+$/', $vo.label)}
|
||||||
|
<a href="{$vo.url}">{$vo.label}</a>
|
||||||
|
{/if}
|
||||||
|
{/switch}
|
||||||
|
{/volist}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
14
code/app/home/view/videoDadi/pc/getArticleInfo.html
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{extend name="basePc" /}
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
{block name="title"}{/block}
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
<div>article.......</div>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"} {/block}
|
||||||
88
code/app/home/view/videoDadi/pc/getArticleList.html
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
{extend name="basePc" /}
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
{block name="title"}{/block}
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
<!--选择搜索 开始-->
|
||||||
|
<div class="find">
|
||||||
|
<!-- <div class="fi_t">
|
||||||
|
<div class="boFi">
|
||||||
|
<span><s></s></span>
|
||||||
|
<input type="text" class="search-val" url="/search.html" name="search_keyword" value=""
|
||||||
|
placeholder="我要搜.. " maxlength="100" autocomplete="off">
|
||||||
|
<a href="javascript:;" btn="search_keyword">搜索</a>
|
||||||
|
</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="opt">
|
||||||
|
|
||||||
|
<div class="optCl" mod="search_channel">
|
||||||
|
<span class="optTit">所属分类</span>
|
||||||
|
<ul>
|
||||||
|
<li><a class="on" href="/pc/article/list.html" btn="search_category">全部</a></li>
|
||||||
|
<li><a href="/pc/article/list-1-1.html" btn="search_category">高考作文</a></li>
|
||||||
|
<li><a href="/pc/article/list-2-1.html" btn="search_category">小说解读</a></li>
|
||||||
|
<li><a href="/pc/article/list-3-1.html" btn="search_category">影视解说</a></li>
|
||||||
|
<li><a href="/pc/article/list-4-1.html" btn="search_category">王者荣耀</a></li>
|
||||||
|
<li><a href="/pc/article/list-5-1.html" btn="search_category">日常八卦</a></li>
|
||||||
|
<li><a href="/pc/article/list-6-1.html" btn="search_category">其它</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--选择搜索 结束-->
|
||||||
|
|
||||||
|
<div class="f4 area">
|
||||||
|
|
||||||
|
<div class="f4_L">
|
||||||
|
<div class="new_list">
|
||||||
|
<ol class="cur">
|
||||||
|
<li>
|
||||||
|
<ul class="list_h">
|
||||||
|
<li class="lb">分类</li>
|
||||||
|
<li class="sm">书名</li>
|
||||||
|
<li class="gx">描述</li>
|
||||||
|
<li class="zz">作者</li>
|
||||||
|
<li class="sj">更新时间</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
{foreach $arrNewsNovel as $key=>$Novel}
|
||||||
|
{include file="Pc/Public/articleList" /}
|
||||||
|
{/foreach}
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--搜索结果 开始-->
|
||||||
|
<div class="result" mod="search_data_list">
|
||||||
|
|
||||||
|
<!--页码切换 开始-->
|
||||||
|
<div class="changepage">
|
||||||
|
<ul class="pagination">
|
||||||
|
<li class="disabled"><span>«</span></li>
|
||||||
|
<li class="active"><span>1</span></li>
|
||||||
|
<li><a href="/pc/article/list--2.html">2</a></li>
|
||||||
|
<li><a href="/pc/article/list--3.html">3</a></li>
|
||||||
|
<li><a href="/pc/article/list--4.html">4</a></li>
|
||||||
|
<li><a href="/pc/article/list--5.html">5</a></li>
|
||||||
|
<li><a href="/pc/article/list--6.html">6</a></li>
|
||||||
|
<li><a href="/pc/article/list--7.html">7</a></li>
|
||||||
|
<li><a href="/pc/article/list--8.html">8</a></li>
|
||||||
|
<li class="disabled"><span>...</span></li>
|
||||||
|
<li><a href="/pc/article/list--33.html">33</a></li>
|
||||||
|
<li><a href="/pc/article/list--34.html">34</a></li>
|
||||||
|
<li><a href="/pc/article/list--2.html">»</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--页码切换 结束-->
|
||||||
|
</div>
|
||||||
|
<!--选择结果 结束-->
|
||||||
|
</div>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"} {/block}
|
||||||
227
code/app/home/view/videoDadi/pc/getLibrary.html
Normal file
@@ -0,0 +1,227 @@
|
|||||||
|
{extend name="basePc" /}
|
||||||
|
|
||||||
|
{block name="get-data"}
|
||||||
|
{novel:pagerexp page="$Request.get.page" limit="30"
|
||||||
|
n_category="$Request.route.strCategory"
|
||||||
|
sort_type="$Request.route.strOrder"
|
||||||
|
n_status="$Request.route.strStatus" d_key="d_key"
|
||||||
|
d_key="d_key"
|
||||||
|
d_val="Novel" n_num="total"
|
||||||
|
button_num="10" cache_life="86400" func="generateCategoryPager" export_name="resData" /}
|
||||||
|
{site:grm page_code="pc_novel_library" diff="$resData.p_data.page" num="70" g_key="arrGrm" /}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="title"}{site:replace code="NOVEL@GETLIBRARY@TITLE"}{/block}
|
||||||
|
{block name="keywords"}{site:replace code="NOVEL@GETLIBRARY@KEYWORDS"}{/block}
|
||||||
|
{block name="description"}{site:replace code="NOVEL@GETLIBRARY@DESCRIPTION"}{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content='{site:replace code="NOVEL@GETLIBRARY@TITLE"}' />
|
||||||
|
<meta property="og:description" content='{site:replace code="NOVEL@GETLIBRARY@DESCRIPTION"}' />
|
||||||
|
{if $Request.route.strGender == 'all' && $Request.route.strCategory == 'all' && $Request.route.strStatus == 'all'}
|
||||||
|
<meta property="og:url" content="https://{$DomainModel->d_domain}{$strCategoryIndexUrlTemp}" />
|
||||||
|
{else}
|
||||||
|
|
||||||
|
<meta property="og:url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:nflurl category="$Request.route.strCategory" status="$Request.route.strStatus" page="$Request.route.intPage"/}' />
|
||||||
|
{/if}
|
||||||
|
<meta property="og:type" content="book" />
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
{if $Request.route.strGender == 'all' && $Request.route.strCategory == 'all' && $Request.route.strStatus == 'all'}
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "CollectionPage",
|
||||||
|
"url": 'https://{$DomainModel->d_domain}{$strCategoryIndexUrlTemp}',
|
||||||
|
"name": '{site:replace code="NOVEL@GETLIBRARY@TITLE"}',
|
||||||
|
"description": '{site:replace code="NOVEL@GETLIBRARY@DESCRIPTION"}',
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{else}
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "CollectionPage",
|
||||||
|
"url": 'https://{$DomainModel->d_domain}{site:nflurl category="$Request.route.strCategory" status="$Request.route.strStatus" page="$Request.route.intPage"/}',
|
||||||
|
"name": '{site:replace code="NOVEL@GETLIBRARY@TITLE"}',
|
||||||
|
"description": '{site:replace code="NOVEL@GETLIBRARY@DESCRIPTION"}',
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
|
||||||
|
{block name="head-css"}
|
||||||
|
|
||||||
|
{if $Request.route.strGender == 'all' && $Request.route.strCategory == 'all' && $Request.route.strStatus == 'all'}
|
||||||
|
<link rel="canonical" href="https://{$DomainModel->d_domain}{$DomainModel->d_domain}{$strCategoryIndexUrlTemp}">
|
||||||
|
{else}
|
||||||
|
<link rel="canonical"
|
||||||
|
href='https://{$DomainModel->d_domain}{site:nflurl category="$Request.route.strCategory" status="$Request.route.strStatus" page="$Request.route.intPage"/}'>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
|
||||||
|
{block name="strPageCode"}
|
||||||
|
<?php $strPageCode = 'library'; ?>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row row-section">
|
||||||
|
<div class="layout layout-col3">
|
||||||
|
{novel:list count="6" sort_type="tuijian" d_key="key" d_val="Novel" p_val="page_data" cache_life="86400"}
|
||||||
|
<div class="item">
|
||||||
|
<div class="image">
|
||||||
|
{$arrGrm[$key]|raw}
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>
|
||||||
|
<img style="min-height:120px;" class="lazyload-img" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel.n_name ?? ''} - {$Novel.n_category ?? ''}最新章节在线免费阅读">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<span>{$Novel.n_author}</span>
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>{$Novel.n_name}</a>
|
||||||
|
</dt>
|
||||||
|
<dd style="height:90px">
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'
|
||||||
|
style="color: #555">{$Novel.n_description}</a>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
{/novel:list}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sort_nav">
|
||||||
|
<p>
|
||||||
|
<span>分类:</span>
|
||||||
|
<a class='{eq name="$Request.route.strCategory" value="all"}on {/eq} {eq name="$Request.route.strCategory" value=""}on on2 {/eq}'
|
||||||
|
href='{$strPcPath}{site:nflurl category="all" status="$Request.route.strStatus" order="$Request.route.strOrder" page="$Request.route.intPage"/}'>不限</a>
|
||||||
|
|
||||||
|
{novel:category d_key="strCategoryPinyin" d_val="strCategoryName"}
|
||||||
|
<a class='{eq name="$Request.route.strCategory" value="$strCategoryPinyin"}on {/eq}'
|
||||||
|
href='{$strPcPath}{site:nflurl category="$strCategoryPinyin" status="$Request.route.strStatus" order="$Request.route.strOrder" page="$Request.route.intPage"/}'>{$strCategoryName}</a>
|
||||||
|
|
||||||
|
{/novel:category}
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<p><span>排序:</span>
|
||||||
|
{novel:sort d_key="key" d_val="strSortName"}
|
||||||
|
<a href='{$strPcPath}{site:nflurl category="$Request.route.strCategory" status="$Request.route.strStatus" order="$key" page="$Request.route.intPage"/}'
|
||||||
|
class='{eq name="$Request.route.strOrder" value="$key"}on {/eq} {if $key == "all" && $Request.route.strOrder == ""}on on2 {/if}'>{$strSortName}</a>
|
||||||
|
{/novel:sort}
|
||||||
|
</p>
|
||||||
|
<p><span>状态:</span>
|
||||||
|
{novel:status d_key="key" d_val="strStatusName"}
|
||||||
|
<a href='{$strPcPath}{site:nflurl category="$Request.route.strCategory" status="$key" order="$Request.route.strOrder" page="$Request.route.intPage"/}'
|
||||||
|
class='{eq name="$Request.route.strStatus" value="$key"}on {/eq} {if $key == "all" && $Request.route.strStatus == ""}on on2 {/if}'
|
||||||
|
btn="search_category">{$strStatusName}</a>
|
||||||
|
{/novel:status}
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="layout layout2 layout-col1 fr">
|
||||||
|
<h2 class="layout-tit">最新入库小说</h2>
|
||||||
|
<ul class="txt-list txt-list-row3">
|
||||||
|
{novel:list count="30" sort_type="news" d_key="key" d_val="Novel" p_val="page_data"
|
||||||
|
cache_life="86400"}
|
||||||
|
<li>
|
||||||
|
<span class="s1">[{$Novel->n_category ?? ''}</span>
|
||||||
|
<span class="s2">
|
||||||
|
{if !empty($arrGrm[$key+36])}
|
||||||
|
{$arrGrm[$key+36]|raw}
|
||||||
|
{/if}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>{$Novel->n_name}</a></span>
|
||||||
|
<span class="s5"><a
|
||||||
|
href='{$strPcPath}{site:souurl key="$Novel->n_author" p="1"/}'>{$Novel->n_author}</a></span>
|
||||||
|
</li>
|
||||||
|
{/novel:list}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="layout layout2 layout-col2 fl">
|
||||||
|
<h2 class="layout-tit">最近更新小说列表</h2>
|
||||||
|
<ul class="txt-list txt-list-row5">
|
||||||
|
{foreach $resData.data as $key=>$Novel}
|
||||||
|
<li>
|
||||||
|
<span class="s1">[{$Novel->n_category ?? ''}</span>
|
||||||
|
<span class="s2">
|
||||||
|
{if !empty($arrGrm[$key+36])}
|
||||||
|
{$arrGrm[$key+36]|raw}
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>{$Novel->n_name}</a></span>
|
||||||
|
<span class="s3"><a
|
||||||
|
href='{$strPcPath}{site:lcpurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin" /}'
|
||||||
|
title="{$Novel->n_latest_chapter_name ?? 'null'}">{$Novel->n_latest_chapter_name ??
|
||||||
|
'null'}</a></span>
|
||||||
|
<span class="s4">{$Novel.n_author}</span>
|
||||||
|
<span class="s5">{:date('m-d')}</span>
|
||||||
|
</li>
|
||||||
|
{/foreach}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 分页 -->
|
||||||
|
<div class="row sort_page_num">
|
||||||
|
{volist name="resData.p_data.pager" id="vo" key="k"}
|
||||||
|
{switch $vo.label}
|
||||||
|
{case value="上一页"}
|
||||||
|
{if $resData.p_data.page == 1}
|
||||||
|
<span>«</span>
|
||||||
|
{else}
|
||||||
|
<a href="{$strPcPath}{$vo.url}">«</a>
|
||||||
|
{/if}
|
||||||
|
{/case}
|
||||||
|
{case value="下一页"}
|
||||||
|
{if $resData.p_data.page >= $resData.p_data.total}
|
||||||
|
<span>»</span>
|
||||||
|
{else}
|
||||||
|
<a href="{$strPcPath}{$vo.url}">»</a>
|
||||||
|
{/if}
|
||||||
|
{/case}
|
||||||
|
{case value="..."}
|
||||||
|
<span>...</span>
|
||||||
|
{/case}
|
||||||
|
{default /}
|
||||||
|
{if preg_match('/^\d+$/', $vo.label)}
|
||||||
|
<a href="{$strPcPath}{$vo.url}">{$vo.label}</a>
|
||||||
|
{/if}
|
||||||
|
{/switch}
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
{/block}
|
||||||
245
code/app/home/view/videoDadi/pc/getNovelCatalog.html
Normal file
@@ -0,0 +1,245 @@
|
|||||||
|
{extend name="basePc" /}
|
||||||
|
|
||||||
|
{block name="get-data"}
|
||||||
|
{novel:info n_id="$Request.route.intNovelId" n_key="arrNovel" n_forge_id="0" /}
|
||||||
|
{site:grm page_code="pc_novel_catalog" diff="$Request.url" num="120" g_key="arrGrm" /}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="title"}{site:replace code="NOVEL@GETNOVELCATALOG@TITLE"}{/block}
|
||||||
|
{block name="keywords"}{site:replace code="NOVEL@GETNOVELCATALOG@KEYWORDS"}{/block}
|
||||||
|
{block name="description"}{site:replace code="NOVEL@GETNOVELCATALOG@DESCRIPTION"}{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content="{$arrNovel['n_name']??'未知小说'}" />
|
||||||
|
<meta property="og:description" content='{site:replace code="NOVEL@GETNOVELCATALOG@DESCRIPTION"}' />
|
||||||
|
<meta property="og:url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}' />
|
||||||
|
<meta property="og:type" content="book" />
|
||||||
|
<meta property="og:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
<meta property="og:site_name" content="{$DomainModel->d_name}" />
|
||||||
|
<meta property="og:novel:category" content="{$arrNovel.n_category ?? ''}">
|
||||||
|
<meta property="og:novel:author" content="{$arrNovel.n_author ?? ''}">
|
||||||
|
<meta property="og:novel:book_name" content="{$arrNovel.n_name ?? ''}">
|
||||||
|
<meta property="og:novel:read_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrNovel.intFirstChapterSort"/}'>
|
||||||
|
<meta property="og:novel:status" content="{$arrNovel.n_status ?? ''}">
|
||||||
|
<meta property="og:novel:update_time" content="{$arrNovel.n_update_time ?? ''}">
|
||||||
|
<meta property="og:novel:latest_chapter_name" content="{$arrNovel.n_latest_chapter_name ?? ''}">
|
||||||
|
<meta property="og:novel:latest_chapter_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{$strPcPath}{site:lcpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
<!-- 可选:支持 Twitter Card -->
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta name="twitter:title" content="{$arrNovel['n_name'] ?? '未知小说'}" />
|
||||||
|
<meta name="twitter:description" content='{site:replace code="NOVEL@GETNOVELCATALOG@DESCRIPTION"}' />
|
||||||
|
<meta name="twitter:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "Book",
|
||||||
|
"name": "{$arrNovel['n_name'] ?? '未知小说'}",
|
||||||
|
"description": "{$arrNovel['n_description'] ??'暂无简介'}",
|
||||||
|
"author": {
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "{$arrNovel['n_author'] ??'佚名'}"
|
||||||
|
},
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
"url": "https://{$DomainModel->d_domain}"
|
||||||
|
},
|
||||||
|
"datePublished": "{$arrNovel['n_update_time'] ?? time()}",
|
||||||
|
"image": "{$arrNovel.n_cover_path ?? ''}",
|
||||||
|
"url": 'https://{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}',
|
||||||
|
"genre": "{$arrNovel.n_category ??''}",
|
||||||
|
"inLanguage": "zh-CN",
|
||||||
|
"bookFormat": "https://{$DomainModel->d_domain}/EBook",
|
||||||
|
"aggregateRating": {
|
||||||
|
"@type": "AggregateRating",
|
||||||
|
"ratingValue": "4.5",
|
||||||
|
"reviewCount": "100",
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head-css"}
|
||||||
|
<link rel="canonical" href='{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
{/block}
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h2>
|
||||||
|
<a href="{$strPcPath}/">
|
||||||
|
{$DomainModel->d_name}-{$DomainModel->d_text_logo}
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head-js"}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="body-class"}novel_info{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
{chapter:pagerexp page="$Request.route.intPage" limit="100" n_id="$Request.route.intNovelId" d_key="d_key" d_val="chapter"
|
||||||
|
cache_life="86400" button_num="3" sort_type="$Request.route.strOrder" func="generateChapterPager" export_name="resData" /}
|
||||||
|
|
||||||
|
<div class="container biqunaicc">
|
||||||
|
<div class="row row-detail">
|
||||||
|
<div class="layout layout-col1">
|
||||||
|
<h2 class="layout-tit xs-hidden">
|
||||||
|
<a href="{$strPcPath}/">{$DomainModel->d_name}</a>>
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
{$arrNovel['n_name']}
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
<div class="detail-box">
|
||||||
|
<div class="imgbox">
|
||||||
|
<img data-src="{$arrNovel.n_cover_path ?? ''}"
|
||||||
|
alt="{$arrNovel['n_name'] ?? ''}小说封面 - {$arrNovel.n_author}最新章节"
|
||||||
|
class="lazyload_book_cover lazyload-img">
|
||||||
|
</div>
|
||||||
|
<div class="info">
|
||||||
|
<div class="top">
|
||||||
|
<h1>{$arrNovel['n_name']}</h1>
|
||||||
|
<div class="fix">
|
||||||
|
<p>作 者:{$arrNovel.n_author ?? ''}</p>
|
||||||
|
<p class="xs-show">类 别:{$arrNovel.n_category ?? ''}</p>
|
||||||
|
<p class="xs-show">状 态:{$arrNovel.n_status ?? ''}</p>
|
||||||
|
<p class="opt">
|
||||||
|
<span class="xs-hidden">动 作:</span>
|
||||||
|
<a rel="nofollow" onclick="addBookshelfFun()">加入书架</a>
|
||||||
|
<i class="xs-hidden">、</i>
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'>章节目录</a>
|
||||||
|
<i class="xs-hidden">、</i>
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrNovel.intFirstChapterSort"/}'>开始阅读</a>
|
||||||
|
</p>
|
||||||
|
<p>最后更新:{$arrNovel.n_update_time ?? ''} </p>
|
||||||
|
<p>最新章节:<a
|
||||||
|
href='{$strPcPath}{site:lcpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
{$arrNovel.n_latest_chapter_name ?? ""}</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="desc xs-hidden">{$arrNovel.n_description ?? ''}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="layout layout-col1">
|
||||||
|
<h2 class="layout-tit">《{$arrNovel.n_name ?? ''}》{$arrNovel.n_name ?? '章节'}</h2>
|
||||||
|
<div class="first_txt">
|
||||||
|
{$arrNovel.strFocus ?? ""} 。看小说就来{$DomainModel->d_name} {$DomainModel->d_domain}...
|
||||||
|
|
||||||
|
<p>相邻推荐:
|
||||||
|
{volist name="arrNovel.n_forge_novel" id="ForgeNovel" key="key"}
|
||||||
|
{if $key<20 } {$arrGrm[$key+20]|raw} {/if} <a
|
||||||
|
href='{$strPcPath}{site:nnurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" n_fid="$ForgeNovel.n_forge_id"/}'
|
||||||
|
class="red">{$ForgeNovel.n_forge_title}</a>
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
{volist name='$arrNovel.arrRelateveNovel' id='Novel'}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row row-section">
|
||||||
|
<div class="layout layout-col1">
|
||||||
|
<h2 class="layout-tit">《{$arrNovel.n_name}》章节列表(第{$Request.route.intPage}页)切换倒序/正序:
|
||||||
|
{if $Request.route.strOrder == 'zheng'}
|
||||||
|
<a href='{$strPcPath}{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="dao" page="1"/}'
|
||||||
|
class="habt y">点击切换倒序</a>
|
||||||
|
{else}
|
||||||
|
<a href='{$strPcPath}{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'
|
||||||
|
class="habt y">点击切换正序</a>
|
||||||
|
{/if}
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<!-- 目录下拉分页-->
|
||||||
|
{include file="pc/public/allChapterPage" /}
|
||||||
|
|
||||||
|
<ul class="section-list fix ycxsid">
|
||||||
|
{foreach $resData.data as $key=>$Chapter}
|
||||||
|
<li>
|
||||||
|
{if !empty($arrGrm[$key])}
|
||||||
|
{$arrGrm[$key]|raw}
|
||||||
|
{/if}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$Chapter.c_sort_num" c_page="0"/}'>
|
||||||
|
{$Chapter.c_name}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
{/foreach}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!-- 目录下拉分页-->
|
||||||
|
{include file="pc/public/allChapterPage" /}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row row-section">
|
||||||
|
<h2 class="layout-tit">已完结热门小说推荐</h2>
|
||||||
|
<div class="layout layout-col3">
|
||||||
|
|
||||||
|
{novel:list count="6" n_category="$arrNovel.n_category_pinyin" n_status="wanjie" d_key="key" d_val="Novel"
|
||||||
|
cache_life="86400"}
|
||||||
|
<div class="item">
|
||||||
|
<div class="image">
|
||||||
|
{if !empty($arrGrm[$key+110])}
|
||||||
|
{$arrGrm[$key+110]|raw}
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
<img style="min-height:120px;" class="lazyload-img" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel.n_name ?? ''} - {$Novel.n_category ?? ''}最新章节在线免费阅读">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span>{$Novel.n_author}</span><a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
</dt>
|
||||||
|
<dd style="height:90px"><a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'
|
||||||
|
style="color: #555">{$Novel.n_description}</a>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
{/novel:list}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const strNovelId = `{$arrNovel.n_id}`;
|
||||||
|
const arrNovel = {
|
||||||
|
'n_id' : `{$arrNovel['n_id']}`,
|
||||||
|
'n_name_pinyin' : `{$arrNovel['n_name_pinyin']}`,
|
||||||
|
'n_cover_path' : `{$arrNovel['n_cover_path']}`,
|
||||||
|
'n_name' : `{$arrNovel['n_name']}`,
|
||||||
|
'n_author' : `{$arrNovel['n_author']}`,
|
||||||
|
'n_status' : `{$arrNovel['n_status']}`,
|
||||||
|
'n_description' : `{$arrNovel['n_description']}`,
|
||||||
|
'n_latest_chapter_name' : `{$arrNovel['n_latest_chapter_name']}`,
|
||||||
|
'n_update_time' : `{$arrNovel['n_update_time']}`,
|
||||||
|
'c_sort_num' : 1,
|
||||||
|
'c_name' : `第一章`,
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
{/block}
|
||||||
222
code/app/home/view/videoDadi/pc/getNovelChapter.html
Normal file
@@ -0,0 +1,222 @@
|
|||||||
|
{extend name="basePc" /}
|
||||||
|
|
||||||
|
{block name="get-data"}
|
||||||
|
|
||||||
|
{site:grm page_code="pc_novel_chapter" diff="$Request.url" num="60" g_key="arrGrm" /}
|
||||||
|
{novel:info n_id="$Request.route.intNovelId" n_key="arrNovel" n_forge_id="0" /}
|
||||||
|
{chapter:info n_id="$Request.route.intNovelId" c_sort_num="$Request.route.intChapterSort"
|
||||||
|
c_page="$Request.route.intChapterPage" c_key="arrChapter" /}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="title"}{site:replace code="NOVEL@GETNOVELCHAPTER@TITLE"}{/block}
|
||||||
|
{block name="keywords"}{site:replace code="NOVEL@GETNOVELCHAPTER@KEYWORDS"}{/block}
|
||||||
|
{block name="description"}{site:replace code="NOVEL@GETNOVELCHAPTER@DESCRIPTION"}{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:title" content="{$arrNovel['n_name']??'未知小说'} {$arrChapter.c_name} - {$DomainModel->d_name}" />
|
||||||
|
<meta property="og:description" content='{site:replace code="NOVEL@GETNOVELCHAPTER@DESCRIPTION"}' />
|
||||||
|
<meta property="og:url"
|
||||||
|
content='https://{$DomainModel->d_domain}{$strPcPath}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}' />
|
||||||
|
<meta property="og:type" content="book" />
|
||||||
|
<meta property="og:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
<meta property="og:site_name" content="{$DomainModel->d_name}" />
|
||||||
|
<meta property="og:novel:category" content="{$arrNovel.n_category ?? ''}">
|
||||||
|
<meta property="og:novel:author" content="{$arrNovel.n_author ?? ''}">
|
||||||
|
<meta property="og:novel:book_name" content="{$arrNovel.n_name ?? ''}">
|
||||||
|
<meta property="og:novel:read_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.c_sort_num"/}'>
|
||||||
|
<meta property="og:novel:status" content="{$arrNovel.n_status ?? ''}">
|
||||||
|
<meta property="og:novel:update_time" content="{$arrNovel.n_update_time ?? ''}">
|
||||||
|
<meta property="og:novel:latest_chapter_name" content="{$arrChapter.c_name}">
|
||||||
|
<meta property="og:novel:latest_chapter_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{$strPcPath}{site:lcpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
<!-- 可选:支持 Twitter Card -->
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta name="twitter:title" content="{$arrNovel['n_name']??'未知小说'} {$arrChapter.c_name} - {$DomainModel->d_name}" />
|
||||||
|
<meta name="twitter:description" content="{$strDescription ?? '暂无简介'}" />
|
||||||
|
<meta name="twitter:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "Book",
|
||||||
|
"name": "{$arrNovel['n_name'] ?? '未知小说'}",
|
||||||
|
"author": {
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "{$arrNovel['n_author'] ??'佚名'}"
|
||||||
|
},
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
"url": "https://{$DomainModel->d_domain}"
|
||||||
|
},
|
||||||
|
"image": "{$arrNovel.n_cover_path ?? ''}",
|
||||||
|
"url":'https://{$DomainModel->d_domain}{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.c_sort_num" c_page="0"/}',
|
||||||
|
"inLanguage": "zh-CN",
|
||||||
|
"genre": "{$arrNovel.n_category ??''}",
|
||||||
|
"datePublished": "{$arrNovel['n_update_time'] ?? time()}",
|
||||||
|
"hasPart": {
|
||||||
|
"@type": "CreativeWork",
|
||||||
|
"name": "{$arrChapter.c_name ?? ''}",
|
||||||
|
"url":'https://{$DomainModel->d_domain}{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.c_sort_num" c_page="0"/}',
|
||||||
|
"description": '{site:replace code="NOVEL@GETNOVELCHAPTER@DESCRIPTION"}'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head-css"}
|
||||||
|
<link rel="canonical"
|
||||||
|
href='https://{$DomainModel->d_domain}{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.c_sort_num"/}'>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head-js"}
|
||||||
|
<script src="/template/default/pc/js/yueduqsbs.js"></script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="body-class"}novel_info{/block}
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
<div class="container biqunaicc">
|
||||||
|
{$arrGrm[1]|raw}
|
||||||
|
<div class="row row-detail">
|
||||||
|
<div class="layout layout-col1">
|
||||||
|
<h2 class="layout-tit xs-hidden">
|
||||||
|
<a href="{$strPcPath}/">{$DomainModel->d_name}</a>><a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>{$arrNovel.n_name}</a>
|
||||||
|
>
|
||||||
|
{$arrChapter.c_name}
|
||||||
|
</h2>
|
||||||
|
{$arrGrm[2]|raw}
|
||||||
|
<div class="word_read">
|
||||||
|
<h3>{$arrNovel.n_name}({$arrChapter.c_name})</h3>
|
||||||
|
<div class="read_btn">
|
||||||
|
{if $arrChapter && $arrChapter.c_sort_num && $arrChapter.c_sort_num == 1 && $arrChapter.c_page == 0}
|
||||||
|
<a id="j_chapterPrev" href="javascript:void(0);">上一页</a>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{if $arrChapter.pre_chapter && $arrChapter.pre_chapter.c_sort_num}
|
||||||
|
{$arrGrm[10]|raw}
|
||||||
|
<a id="j_chapterPrev"
|
||||||
|
href='{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.pre_chapter.c_sort_num" c_page="$arrChapter.pre_chapter.c_page"/}'>上一页</a>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<span>|</span>
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'>章节目录</a>
|
||||||
|
<span>|</span>
|
||||||
|
|
||||||
|
{if $arrChapter.next_chapter && $arrChapter.next_chapter.c_sort_num}
|
||||||
|
{$arrGrm[9]|raw}
|
||||||
|
<a id="j_chapterNext"
|
||||||
|
href='{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.next_chapter.c_sort_num" c_page="$arrChapter.next_chapter.c_page"/}'>下一页</a>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{$arrGrm[3]|raw}
|
||||||
|
<script>document.writeln(qsbs.bb('{$arrChapter.c_content}'));</script>
|
||||||
|
{$arrGrm[4]|raw}
|
||||||
|
<p>请勿开启浏览器阅读模式,否则将导致章节内容缺失及无法阅读下一页。</p>
|
||||||
|
|
||||||
|
<p>相邻推荐:
|
||||||
|
{volist name="arrNovel.n_forge_novel" id="ForgeNovel" key="key"}
|
||||||
|
{if $key<19 } {$arrGrm[$key+9]|raw} {/if} <a
|
||||||
|
href='{$strPcPath}{site:nnurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" n_fid="$ForgeNovel.n_forge_id"/}'
|
||||||
|
class="red">{$ForgeNovel.n_forge_title}</a>
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
{volist name='arrNovel.arrRelateveNovel' id='Novel'}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
</p>
|
||||||
|
{$arrGrm[5]|raw}
|
||||||
|
<div class="read_btn">
|
||||||
|
{if $arrChapter && $arrChapter.c_sort_num && $arrChapter.c_sort_num == 1 && $arrChapter.c_page == 0}
|
||||||
|
<a id="j_chapterPrev" href="javascript:void(0);">上一页</a>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{if $arrChapter.pre_chapter && $arrChapter.pre_chapter.c_sort_num}
|
||||||
|
{$arrGrm[10]|raw}
|
||||||
|
<a id="j_chapterPrev"
|
||||||
|
href='{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.pre_chapter.c_sort_num" c_page="$arrChapter.pre_chapter.c_page"/}'>上一页</a>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<span>|</span>
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'>章节目录</a>
|
||||||
|
<span>|</span>
|
||||||
|
|
||||||
|
{if $arrChapter.next_chapter && $arrChapter.next_chapter.c_sort_num}
|
||||||
|
{$arrGrm[9]|raw}
|
||||||
|
<a id="j_chapterNext"
|
||||||
|
href='{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrChapter.next_chapter.c_sort_num" c_page="$arrChapter.next_chapter.c_page"/}'>下一页</a>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
{$arrGrm[6]|raw}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row row-section">
|
||||||
|
<h2 class="layout-tit">已完结热门小说推荐</h2>
|
||||||
|
<div class="layout layout-col3">read_btn
|
||||||
|
|
||||||
|
{novel:list count="6" n_category="$arrNovel.n_category_pinyin" n_status="wanjie" d_key="key" d_val="Novel"
|
||||||
|
p_val="page_data" cache_life="86400"}
|
||||||
|
<div class="item">
|
||||||
|
<div class="image">
|
||||||
|
{if !empty($arrGrm[$key+6])}
|
||||||
|
{$arrGrm[$key+6]|raw}
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>
|
||||||
|
<img style="min-height:120px;" class="lazyload-img" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel.n_name ?? ''} - {$Novel.n_category ?? ''}最新章节在线免费阅读">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span>{$Novel.n_author}</span><a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a></dt>
|
||||||
|
<dd style="height:90px"><a href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'
|
||||||
|
style="color: #555">{$Novel.n_description}</a>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/novel:list}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
const strNovelId = `{$arrNovel.n_id}`;
|
||||||
|
const arrNovel = {
|
||||||
|
'n_id' : `{$arrNovel['n_id']}`,
|
||||||
|
'n_name_pinyin' : `{$arrNovel['n_name_pinyin']}`,
|
||||||
|
'n_cover_path' : `{$arrNovel['n_cover_path']}`,
|
||||||
|
'n_name' : `{$arrNovel['n_name']}`,
|
||||||
|
'n_author' : `{$arrNovel['n_author']}`,
|
||||||
|
'n_status' : `{$arrNovel['n_status']}`,
|
||||||
|
'n_description' : `{$arrNovel['n_description']}`,
|
||||||
|
'n_latest_chapter_name' : `{$arrNovel['n_latest_chapter_name']}`,
|
||||||
|
'n_update_time' : `{$arrNovel['n_update_time']}`,
|
||||||
|
'c_sort_num' : 1,
|
||||||
|
'c_name' : `第一章`,
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
{/block}
|
||||||
268
code/app/home/view/videoDadi/pc/getNovelInfo.html
Normal file
@@ -0,0 +1,268 @@
|
|||||||
|
{extend name="basePc" /}
|
||||||
|
|
||||||
|
{block name="get-data"}
|
||||||
|
{if $Request.route.intNovelId}
|
||||||
|
{novel:info n_id="$Request.route.intNovelId" n_key="arrNovel" n_forge_id="$Request.route.intForgeId" /}
|
||||||
|
{else}
|
||||||
|
{novel:info n_id="$DomainModel->info_id" n_key="arrNovel" n_forge_id="0" /}
|
||||||
|
{/if}
|
||||||
|
{site:grm page_code="pc_novel_info" diff="$arrNovel.n_id" num="120" g_key="arrGrm" /}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="title"}
|
||||||
|
{if $DomainModel->info_id == $Request.route.intNovelId || empty($Request.route.intNovelId)}
|
||||||
|
{site:replace code="INDEX@INDEX@TITLE"}
|
||||||
|
{else}
|
||||||
|
{site:replace code="NOVEL@GETNOVELINFO@TITLE" diff="$Request.route.intNovelId" /}
|
||||||
|
{/if}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{block name="keywords"}
|
||||||
|
{if $DomainModel->info_id == $Request.route.intNovelId || empty($Request.route.intNovelId)}
|
||||||
|
{site:replace code="INDEX@INDEX@KEYWORDS"}
|
||||||
|
{else}
|
||||||
|
{site:replace code="NOVEL@GETNOVELINFO@KEYWORDS" diff="$Request.route.intNovelId"}
|
||||||
|
{/if}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="description"}
|
||||||
|
{if $DomainModel->info_id == $Request.route.intNovelId || empty($Request.route.intNovelId)}
|
||||||
|
{site:replace code="INDEX@INDEX@DESCRIPTION"}
|
||||||
|
{else}
|
||||||
|
{site:replace code="NOVEL@GETNOVELINFO@DESCRIPTION" diff="$Request.route.intNovelId"}
|
||||||
|
{/if}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content="{$arrNovel['n_name']??'未知小说'}" />
|
||||||
|
<meta property="og:description" content='{site:replace code="NOVEL@GETNOVELINFO@DESCRIPTION"}' />
|
||||||
|
<meta property="og:url"
|
||||||
|
content='https://{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}' />
|
||||||
|
<meta property="og:type" content="book" />
|
||||||
|
<meta property="og:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
<meta property="og:site_name" content="{$DomainModel->d_name}" />
|
||||||
|
<meta property="og:novel:category" content="{$arrNovel.n_category ?? ''}">
|
||||||
|
<meta property="og:novel:author" content="{$arrNovel.n_author ?? ''}">
|
||||||
|
<meta property="og:novel:book_name" content="{$arrNovel.n_name ?? ''}">
|
||||||
|
<meta property="og:novel:read_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrNovel.intFirstChapterSort"/}'>
|
||||||
|
<meta property="og:novel:status" content="{$arrNovel.n_status ?? ''}">
|
||||||
|
<meta property="og:novel:update_time" content="{$arrNovel.n_update_time ?? ''}">
|
||||||
|
<meta property="og:novel:latest_chapter_name" content="{$arrNovel.n_latest_chapter_name ?? ''}">
|
||||||
|
<meta property="og:novel:latest_chapter_url"
|
||||||
|
content='https://{$DomainModel->d_domain}{$strPcPath}{site:lcpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
<!-- 可选:支持 Twitter Card -->
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta name="twitter:title" content="{$arrNovel['n_name'] ?? '未知小说'}" />
|
||||||
|
<meta name="twitter:description" content="'{site:replace code="NOVEL@GETNOVELINFO@DESCRIPTION"}' />
|
||||||
|
<meta name="twitter:image" content="{$arrNovel.n_cover_path ?? ''}" />
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "Book",
|
||||||
|
"name": "{$arrNovel['n_name'] ?? '未知小说'}",
|
||||||
|
"description": "{$arrNovel['n_description'] ??'暂无简介'}",
|
||||||
|
"author": {
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "{$arrNovel['n_author'] ??'佚名'}"
|
||||||
|
},
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
"url": "https://{$DomainModel->d_domain}"
|
||||||
|
},
|
||||||
|
"datePublished": "{$arrNovel['n_update_time'] ?? time()}",
|
||||||
|
"image": "{$arrNovel.n_cover_path ?? ''}",
|
||||||
|
"url": 'https://{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}',
|
||||||
|
"genre": "{$arrNovel.n_category ??''}",
|
||||||
|
"inLanguage": "zh-CN",
|
||||||
|
"bookFormat": "https://{$DomainModel->d_domain}/EBook",
|
||||||
|
"aggregateRating": {
|
||||||
|
"@type": "AggregateRating",
|
||||||
|
"ratingValue": "4.5",
|
||||||
|
"reviewCount": "100",
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head-css"}
|
||||||
|
<link rel="canonical"
|
||||||
|
href='{$DomainModel->d_domain}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h2>
|
||||||
|
<a href="{$strPcPath}/">
|
||||||
|
{$DomainModel->d_name}-{$DomainModel->d_text_logo}
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="head-js"}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="body-class"}novel_info{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
<div class="container biqunaicc">
|
||||||
|
<div class="row row-detail">
|
||||||
|
<div class="layout layout-col1">
|
||||||
|
<h2 class="layout-tit xs-hidden">
|
||||||
|
<a href="{$strPcPath}/">{$DomainModel->d_name}</a>>
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
{$arrNovel['n_name']}
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
<div class="detail-box">
|
||||||
|
<div class="imgbox">
|
||||||
|
<img data-src="{$arrNovel.n_cover_path ?? ''}"
|
||||||
|
alt="{$arrNovel['n_name'] ?? ''}小说封面 - {$arrNovel.n_author}最新章节"
|
||||||
|
class="lazyload_book_cover lazyload-img">
|
||||||
|
</div>
|
||||||
|
<div class="info">
|
||||||
|
<div class="top">
|
||||||
|
<h1>{$arrNovel['n_name']}</h1>
|
||||||
|
<div class="fix">
|
||||||
|
<p>作 者:{$arrNovel.n_author ?? ''}</p>
|
||||||
|
<p class="xs-show">类 别:{$arrNovel.n_category ?? ''}</p>
|
||||||
|
<p class="xs-show">状 态:{$arrNovel.n_status ?? ''}</p>
|
||||||
|
<p class="opt">
|
||||||
|
<span class="xs-hidden">动 作:</span>
|
||||||
|
<a rel="nofollow" onclick="addBookshelfFun()">加入书架</a>
|
||||||
|
<i class="xs-hidden">、</i>
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'>章节目录</a>
|
||||||
|
<i class="xs-hidden">、</i>
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$arrNovel.intFirstChapterSort"/}'>开始阅读</a>
|
||||||
|
</p>
|
||||||
|
<p>最后更新:{$arrNovel.n_update_time ?? ''} </p>
|
||||||
|
<p>最新章节:<a
|
||||||
|
href='{$strPcPath}{site:lcpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" /}'>
|
||||||
|
{$arrNovel.n_latest_chapter_name ?? ""}</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="desc xs-hidden">{$arrNovel.n_description ?? ''}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="layout layout-col1">
|
||||||
|
<h2 class="layout-tit">《{$arrNovel.n_name ?? ''}》{$arrNovel.n_name ?? '章节'}</h2>
|
||||||
|
<div class="first_txt">
|
||||||
|
{if $DomainModel->info_id == $Request.route.intNovelId || empty($Request.route.intNovelId)}
|
||||||
|
<h4 class="site-description ">{$DomainModel->d_index_description}</h4>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{$arrNovel.strFocus ?? ""} 。看小说就来{$DomainModel->d_name} {$DomainModel->d_domain}...
|
||||||
|
|
||||||
|
<p>相邻推荐:
|
||||||
|
{volist name="arrNovel.n_forge_novel" id="ForgeNovel" key="key"}
|
||||||
|
{if $key<20 } {$arrGrm[$key+20]|raw} {/if} <a
|
||||||
|
href='{$strPcPath}{site:nnurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" n_fid="$ForgeNovel.n_forge_id"/}'
|
||||||
|
class="red">{$ForgeNovel.n_forge_title}</a>
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
{volist name='$arrNovel.arrRelateveNovel' id='Novel'}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row row-section">
|
||||||
|
<div class="layout layout-col1">
|
||||||
|
<h2 class="layout-tit">《{$arrNovel.n_name}》最新章节</h2>
|
||||||
|
<ul class="section-list fix">
|
||||||
|
{chapter:list count="12" sort_type="dao" n_id="$arrNovel.n_id" d_key="key" d_val="Chapter" cache_life="86400"}
|
||||||
|
<li>
|
||||||
|
{if !empty($arrGrm[$key])}
|
||||||
|
{$arrGrm[$key]|raw}
|
||||||
|
{/if}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$Chapter.c_sort_num" c_page="0"/}'>{$Chapter.c_name}</a>
|
||||||
|
</li>
|
||||||
|
{/chapter:list}
|
||||||
|
</ul>
|
||||||
|
<h2 class="layout-tit">《{$arrNovel.n_name}》章节列表</h2>
|
||||||
|
<ul class="fix section-list">
|
||||||
|
{chapter:list count="100" sort_type="zheng" n_id="$arrNovel.n_id" d_key="key" d_val="Chapter" cache_life="86400"}
|
||||||
|
<li>
|
||||||
|
{if !empty($arrGrm[$key+10])}
|
||||||
|
{$arrGrm[$key+10]|raw}
|
||||||
|
{/if}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:cpurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" c_sort="$Chapter.c_sort_num" c_page="0"/}'>{$Chapter.c_name}</a>
|
||||||
|
</li>
|
||||||
|
{/chapter:list}
|
||||||
|
</ul><a
|
||||||
|
href='{$strPcPath}{site:nclurl n_id="$arrNovel.n_id" n_py="$arrNovel.n_name_pinyin" order="zheng" page="1"/}'
|
||||||
|
class="btn-mulu">查看更多章节...</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row row-section">
|
||||||
|
<h2 class="layout-tit">已完结热门小说推荐</h2>
|
||||||
|
<div class="layout layout-col3">
|
||||||
|
|
||||||
|
{novel:list count="6" n_category="$arrNovel.n_category_pinyin" n_status="wanjie" d_key="key" d_val="Novel" p_val="page_data" cache_life="86400"}
|
||||||
|
<div class="item">
|
||||||
|
<div class="image">
|
||||||
|
{if !empty($arrGrm[$key+110])}
|
||||||
|
{$arrGrm[$key+110]|raw}
|
||||||
|
{/if}
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>
|
||||||
|
<img style="min-height:120px;" class="lazyload-img" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel.n_name ?? ''} - {$Novel.n_category ?? ''}最新章节在线免费阅读">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span>{$Novel.n_author}</span><a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
</dt>
|
||||||
|
<dd style="height:90px"><a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'
|
||||||
|
style="color: #555">{$Novel.n_description}</a>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
{/novel:list}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const strNovelId = `{$arrNovel.n_id}`;
|
||||||
|
const arrNovel = {
|
||||||
|
'n_id' : `{$arrNovel['n_id']}`,
|
||||||
|
'n_name_pinyin' : `{$arrNovel['n_name_pinyin']}`,
|
||||||
|
'n_cover_path' : `{$arrNovel['n_cover_path']}`,
|
||||||
|
'n_name' : `{$arrNovel['n_name']}`,
|
||||||
|
'n_author' : `{$arrNovel['n_author']}`,
|
||||||
|
'n_status' : `{$arrNovel['n_status']}`,
|
||||||
|
'n_description' : `{$arrNovel['n_description']}`,
|
||||||
|
'n_latest_chapter_name' : `{$arrNovel['n_latest_chapter_name']}`,
|
||||||
|
'n_update_time' : `{$arrNovel['n_update_time']}`,
|
||||||
|
'c_sort_num' : 1,
|
||||||
|
'c_name' : `第一章`,
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
{/block}
|
||||||
139
code/app/home/view/videoDadi/pc/getSearchNovel.html
Normal file
@@ -0,0 +1,139 @@
|
|||||||
|
{extend name="basePc" /}
|
||||||
|
|
||||||
|
{block name="get-data"}
|
||||||
|
{novel:pagerexp page="$Request.get.page" limit="30"
|
||||||
|
key="$Request.get.keyword"
|
||||||
|
d_key="d_key"
|
||||||
|
d_val="Novel" n_num="total"
|
||||||
|
p_val="page_data" button_num="10" cache_life="86400" func="generateSearchPager" export_name="resData" /}
|
||||||
|
{site:grm page_code="pc_novel_search" diff="$Request.url" num="30" g_key="arrGrm" /}
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="title"}{site:replace code="NOVEL@GETSEARCHNOVEL@TITLE"}{/block}
|
||||||
|
{block name="keywords"}{site:replace code="NOVEL@GETSEARCHNOVEL@KEYWORDS"}{/block}
|
||||||
|
{block name="description"}{site:replace code="NOVEL@GETSEARCHNOVEL@DESCRIPTION"}{/block}
|
||||||
|
|
||||||
|
{block name="head"}
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content=‘{site:replace code="NOVEL@GETSEARCHNOVEL@TITLE"} />
|
||||||
|
<meta property="og:description" content='{site:replace code="NOVEL@GETSEARCHNOVEL@DESCRIPTION"}' />
|
||||||
|
<meta property="og:url" content="https://{$DomainModel->d_domain}{site:souurl key='$Request.get.keyword' p='1'/}" />
|
||||||
|
<meta property="og:type" content="book" />
|
||||||
|
<meta property="og:site_name" content="{$DomainModel->d_name}">
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
|
<meta name="twitter:title" content="{$Request.get.keyword} - {$DomainModel->d_name}搜索 - 第{$Request.get.intPage}页">
|
||||||
|
<meta name="twitter:description" content="{$Request.get.keyword}搜索结果第{$Request.get.intPage}页,免费阅读小说,快来体验!">
|
||||||
|
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "SearchResultsPage",
|
||||||
|
"url": "https://{$DomainModel->d_name}{site:souurl key='$Request.get.keyword' p='1'/}",
|
||||||
|
"name": "{$DomainModel->d_name} - {$DomainModel->d_name}搜索 第{$Request.get.intPage}页",
|
||||||
|
"description": "搜索‘{$Request.get.keyword}’结果第{$Request.get.intPage}页,提供{$Request.get.keyword}创作的小说免费阅读。",
|
||||||
|
"datePublished": "{$arrNovel['n_update_time'] ?? time()}",
|
||||||
|
"mainEntity": {
|
||||||
|
"@type": "Book",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
"author": {
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "{$DomainModel->d_name}"
|
||||||
|
},
|
||||||
|
"url": "https://{$DomainModel->d_domain}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
|
||||||
|
{block name="title"}{/block}
|
||||||
|
{block name="meta-other"}{/block}
|
||||||
|
{block name="body-class"}novel_home novel_search_page{/block}
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="layout layout3 layout-col3 fl">
|
||||||
|
<h1>{$Request.get.keyword}搜索结果 - {$DomainModel->d_name} 第{$resData.p_data.page}页</h1>
|
||||||
|
<div class="result search_tip">
|
||||||
|
搜索<span style="color:red">“{$Request.get.keyword}”</span>相关结果共有 <span
|
||||||
|
style="color:red">{$resData.p_data.total}</span> 部小说
|
||||||
|
</div>
|
||||||
|
{if $resData.p_data.total <1} <p style="text-align: center;line-height: 60px">没有相关数据</p>
|
||||||
|
{else}
|
||||||
|
<div class="layout layout-col3">
|
||||||
|
|
||||||
|
{foreach $resData.data as $key=>$Novel}
|
||||||
|
<div class="item">
|
||||||
|
<div class="image">
|
||||||
|
{if !empty($arrGrm[$key])}
|
||||||
|
{$arrGrm[$key]|raw}
|
||||||
|
{/if}
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>
|
||||||
|
<img style="min-height:120px;" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel['n_name'] ?? ''}小说封面 - {$Novel.n_author}最新章节"
|
||||||
|
class="lazy lazyload-img">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt><span>{$Novel.n_author}</span><a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'>{$Novel.n_name}</a>
|
||||||
|
</dt>
|
||||||
|
<dd style="height:90px"><a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}'
|
||||||
|
style="color: #555">{$Novel.n_description}</a>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
{/foreach}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 分页 -->
|
||||||
|
<div class="row sort_page_num">
|
||||||
|
{volist name="resData.p_data.pager" id="vo" key="k"}
|
||||||
|
{switch $vo.label}
|
||||||
|
{case value="上一页"}
|
||||||
|
{if $resData.p_data.page == 1}
|
||||||
|
<span>«</span>
|
||||||
|
{else}
|
||||||
|
<a href="{$strPcPath}{$vo.url}">«</a>
|
||||||
|
{/if}
|
||||||
|
{/case}
|
||||||
|
{case value="下一页"}
|
||||||
|
{if $resData.p_data.page >= $resData.p_data.total}
|
||||||
|
<span>»</span>
|
||||||
|
{else}
|
||||||
|
<a href="{$strPcPath}{$vo.url}">»</a>
|
||||||
|
{/if}
|
||||||
|
{/case}
|
||||||
|
{case value="..."}
|
||||||
|
<span>...</span>
|
||||||
|
{/case}
|
||||||
|
{default /}
|
||||||
|
{if preg_match('/^\d+$/', $vo.label)}
|
||||||
|
<a href="{$strPcPath}{$vo.url}">{$vo.label}</a>
|
||||||
|
{/if}
|
||||||
|
{/switch}
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
{/block}
|
||||||
180
code/app/home/view/videoDadi/pc/index.html
Normal file
@@ -0,0 +1,180 @@
|
|||||||
|
{extend name="basePc" /}
|
||||||
|
{block name="title"}{site:replace code="INDEX@INDEX@TITLE"}{/block}
|
||||||
|
{block name="keywords"}{site:replace code="INDEX@INDEX@KEYWORDS"}{/block}
|
||||||
|
{block name="description"}{site:replace code="INDEX@INDEX@DESCRIPTION"}{/block}
|
||||||
|
|
||||||
|
{block name="head-css"}
|
||||||
|
<link rel="canonical" href="https://{$DomainModel->d_domain}/">
|
||||||
|
{/block}
|
||||||
|
{block name="head"}
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content='{site:replace code="INDEX@INDEX@TITLE"}' />
|
||||||
|
<meta property="og:description" content='{site:replace code="INDEX@INDEX@DESCRIPTION"}' />
|
||||||
|
<meta property="og:url" content="https://{$DomainModel->d_domain}" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "WebSite",
|
||||||
|
"name": "{$DomainModel->d_name}",
|
||||||
|
"url": "https://{$DomainModel->d_domain}",
|
||||||
|
"headline": '{site:replace code="INDEX@INDEX@TITLE"}',
|
||||||
|
"description": '{site:replace code="INDEX@INDEX@DESCRIPTION"}',
|
||||||
|
"datePublished": "{:date('Y-m-d')}"
|
||||||
|
|
||||||
|
"potentialAction": {
|
||||||
|
"@type": "SearchAction",
|
||||||
|
"target": 'https://{$DomainModel->d_domain}{site:souurl key="search_term_string" p="1"/}',
|
||||||
|
"query-input": "required name=search_term_string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
{site:grm page_code="pc_index" diff="0" num="150" g_key="arrGrm" /}
|
||||||
|
|
||||||
|
<div class="container biqunaicc">
|
||||||
|
<div class="row">
|
||||||
|
<div class="layout layout-col2">
|
||||||
|
{novel:list count="4" sort_type="tuijian" n_status="lianzai" d_key="d_key" d_val="Novel" p_val="page_data"
|
||||||
|
cache_life="86400"}
|
||||||
|
<div class="item">
|
||||||
|
<div class="image">
|
||||||
|
{$arrGrm[$d_key]|raw}
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>
|
||||||
|
<img style="min-height:120px;" class="lazyload-img" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel.n_name ?? ''} - {$Novel.n_category ?? ''}最新章节在线免费阅读">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<span>{$Novel.n_author ?? ''}</span>
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>{$Novel.n_name
|
||||||
|
?? ''}</a>
|
||||||
|
</dt>
|
||||||
|
<dd style="height:90px">
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'
|
||||||
|
style="color: #555">
|
||||||
|
{$Novel.n_description ?? ''}
|
||||||
|
</a>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
{/novel:list}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="layout layout-col1">
|
||||||
|
<h2 class="layout-tit">经典推荐</h2>
|
||||||
|
<ul class="txt-list txt-list-row3">
|
||||||
|
{novel:list count="9" sort_type="tuijian" n_status="wanjie" d_key="d_key" d_val="Novel"
|
||||||
|
p_val="page_data" cache_life="86400"}
|
||||||
|
<li>
|
||||||
|
<span class="s1">[{$Novel->n_category ?? ''}</span>
|
||||||
|
<span class="s2">
|
||||||
|
{$arrGrm[$d_key+4]|raw}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>{$Novel->n_name}</a></span>
|
||||||
|
<span class="s5">
|
||||||
|
<a href='{site:souurl key="$Novel->n_author" p="1"/}'>{$Novel->n_author}</a>
|
||||||
|
</span>
|
||||||
|
</li>
|
||||||
|
{/novel:list}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="layout">
|
||||||
|
{novel:category d_key="strCategoryPinyin" d_val="strCategoryName"}
|
||||||
|
<div class="tp-box">
|
||||||
|
<h2>{$strCategoryName}</h2> <!-- 分类标题 -->
|
||||||
|
<div class="top">
|
||||||
|
|
||||||
|
<?php $start = 1 ;$start +=1 ;?>
|
||||||
|
|
||||||
|
{novel:list count="1" n_category="$strCategoryPinyin" sort_type="news" d_key="d_key" d_val="Novel"
|
||||||
|
p_val="page_data" cache_life="86400"}
|
||||||
|
<div class="image">
|
||||||
|
{$arrGrm[$d_key+9+10*$start]|raw}
|
||||||
|
<a href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>
|
||||||
|
<img class="lazyload-img" src="/static/img/default.jpg"
|
||||||
|
data-src="{$Novel.n_cover_path ?? ''}"
|
||||||
|
alt="{$Novel.n_name ?? ''} - {$Novel.n_category ?? ''}最新章节在线免费阅读">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt><a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>{$Novel->n_name}</a>
|
||||||
|
</dt>
|
||||||
|
<dd><a href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'
|
||||||
|
style="color: #555">{$Novel.n_description ?? ''}</a></dd>
|
||||||
|
</dl>
|
||||||
|
{/novel:list}
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
{novel:list count="12" n_category="$strCategoryPinyin" sort_type="news" d_key="d_key" d_val="Novel"
|
||||||
|
p_val="page_data" cache_life="86400"}
|
||||||
|
<li>
|
||||||
|
{$arrGrm[$d_key+9+10*$start]|raw}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>{$Novel->n_name}</a>/<a
|
||||||
|
href='{site:souurl key="$Novel->n_author" p="1"/}'>{$Novel->n_author}</a></li>
|
||||||
|
{/novel:list}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{/novel:category}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="layout layout2 layout-col1 fr">
|
||||||
|
<h2 class="layout-tit">最新入库小说</h2>
|
||||||
|
<ul class="txt-list txt-list-row3">
|
||||||
|
{novel:list count="50" sort_type="news" d_key="d_key" d_val="Novel" p_val="page_data"
|
||||||
|
cache_life="86400"}
|
||||||
|
<li>
|
||||||
|
<span class="s1">[{$Novel->n_category ?? ''}]</span>
|
||||||
|
<span class="s2">
|
||||||
|
{$arrGrm[$d_key+100]|raw}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>{$Novel->n_name}</a></span>
|
||||||
|
<span class="s5"><a href='{site:souurl key="$Novel->n_author" p="1"/}'>{$Novel->n_author}</a></span>
|
||||||
|
</li>
|
||||||
|
{/novel:list}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="layout layout2 layout-col2 fl">
|
||||||
|
<h2 class="layout-tit">最近更新小说列表</h2>
|
||||||
|
<ul class="txt-list txt-list-row5">
|
||||||
|
{novel:list count="50" sort_type="update" d_key="d_key" d_val="Novel" p_val="page_data"
|
||||||
|
cache_life="86400"}
|
||||||
|
<li>
|
||||||
|
<span class="s1">[{$Novel->n_category ?? ''}]</span>
|
||||||
|
<span class="s2">
|
||||||
|
{$arrGrm[$d_key+100]|raw}
|
||||||
|
<a
|
||||||
|
href='{$strPcPath}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}'>{$Novel->n_name}</a></span>
|
||||||
|
<span class="s3"><a
|
||||||
|
href='{$strPcPath}{site:lcpurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin" /}'
|
||||||
|
title="{$Novel->n_latest_chapter_name ?? 'null'}">{$Novel->n_latest_chapter_name ??
|
||||||
|
'null'}</a></span>
|
||||||
|
<span class="s4"><a href='{site:souurl key="$Novel->n_author" p="1"/}'>{$Novel->n_author}</a></span>
|
||||||
|
<span class="s5">{:date('m-d')}</span>
|
||||||
|
</li>
|
||||||
|
{/novel:list}
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
11
code/app/home/view/videoDadi/pc/public/adBanner.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<!-- <div class="adv">
|
||||||
|
<a href="#" title="" target="_blank">
|
||||||
|
<img src="/template/kuangyu/home/bai_web/images/grey.gif"
|
||||||
|
data-src="/template/kuangyu/home/bai_web/images/1120x100.png" class="lazyload" alt="">
|
||||||
|
</a>
|
||||||
|
</div> -->
|
||||||
|
|
||||||
|
<a href="#" title="" target="_blank">
|
||||||
|
<img src="/template/kuangyu/home/bai_web/images/grey.gif"
|
||||||
|
data-src="/template/kuangyu/home/bai_web/images/1120x100.png" class="lazyload" alt="">
|
||||||
|
</a>
|
||||||
35
code/app/home/view/videoDadi/pc/public/allChapterPage.html
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
{if !empty($resData.p_data.pager)}
|
||||||
|
<div class="page_num">
|
||||||
|
{volist name="$resData.p_data.pager" id="item"}
|
||||||
|
{eq name="item.type" value="prev"}
|
||||||
|
<a href="{$item.url ? $strPcPath . $item.url: 'javascript:void(0)'}"
|
||||||
|
class="z {$item.disabled ? 'disabled' : ''}">
|
||||||
|
{$item.label}
|
||||||
|
</a>
|
||||||
|
{/eq}
|
||||||
|
{/volist}
|
||||||
|
|
||||||
|
<select onchange="self.location.href=options[selectedIndex].value">
|
||||||
|
{volist name="$resData.p_data.pager" id="item"}
|
||||||
|
{eq name="item.type" value="page"}
|
||||||
|
|
||||||
|
<?php $intLimit = $resData['p_data']['limit']; ?>
|
||||||
|
<?php $start = ($item['label'] - 1) * $intLimit + 1; ?>
|
||||||
|
<?php $end = $item['label'] * $intLimit; ?>
|
||||||
|
<option value="{$strPcPath}{$item.url}" {$item.current ? 'selected' : ''}>
|
||||||
|
第{$start}-{$end}章
|
||||||
|
</option>
|
||||||
|
{/eq}
|
||||||
|
{/volist}
|
||||||
|
</select>
|
||||||
|
|
||||||
|
{volist name="$resData.p_data.pager" id="item"}
|
||||||
|
{eq name="item.type" value="next"}
|
||||||
|
<a href="{$item.url ? $strPcPath . $item.url: 'javascript:void(0)'}"
|
||||||
|
class="y {$item.disabled ? 'disabled' : ''}">
|
||||||
|
{$item.label}
|
||||||
|
</a>
|
||||||
|
{/eq}
|
||||||
|
{/volist}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
12
code/app/home/view/videoDadi/pc/public/articleList.html
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<li>
|
||||||
|
<ul>
|
||||||
|
<li class="lb"><a href="/pc/article/info-332.html" target="_blank">耽美百合</a></li>
|
||||||
|
<li class="sm">
|
||||||
|
<h3><a href="/pc/article/info-332.html" title="我真是一条龙" target="_blank">我真是一条龙</a></h3>
|
||||||
|
</li>
|
||||||
|
<li class="gx"><a href="/pc/article/info-332.html" title="老读者必看公告!!!"
|
||||||
|
target="_blank">老读者必看公告!!!</a></li>
|
||||||
|
<li class="zz">兔子很淡定</li>
|
||||||
|
<li class="sj">1天前</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<li id="chapter-4b2d5aab58d71" class="on">
|
||||||
|
<a href="chapter/1-1-1.html">01 天龙问世</a>
|
||||||
|
</li>
|
||||||
|
<li id="chapter-486ef2abee55d">
|
||||||
|
<a href="/chapter/1-1-1.html">02 沧武的小霸王</a>
|
||||||
|
</li>
|
||||||
11
code/app/home/view/videoDadi/pc/public/endNovelList.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<li>
|
||||||
|
<a href="/pc/novel/334.html" title="落魄千金美食发家日常" target="_blank" class="book_cov">
|
||||||
|
<img class="lazyload_book_cover lazyload-img"
|
||||||
|
src="/static/img/default.jpg" data-src="https://www.630zw.org/img/176943.jpg"
|
||||||
|
alt="落魄千金美食发家日常">
|
||||||
|
</a>
|
||||||
|
<div class="book_inf">
|
||||||
|
<h3><a href="/pc/novel/334.html" title="落魄千金美食发家日常" target="_blank">落魄千金美食发家日常</a></h3>
|
||||||
|
<span class="aut">鱼昆子</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
22
code/app/home/view/videoDadi/pc/public/footer.html
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<div class="foot">
|
||||||
|
<div class="foot_T">
|
||||||
|
<div class="tWrap">
|
||||||
|
<p>友情链接</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="http://www.kyxscms.com" target="_blank">狂雨小说cms</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="foot_B">
|
||||||
|
<p class="Co">
|
||||||
|
Copyright (C) 2008-2020 All rights reserved
|
||||||
|
<br>
|
||||||
|
<a href="javascript:void(0)" style="margin: 0 10px;"></a>
|
||||||
|
</p>
|
||||||
|
<p>请所有作者发布作品时务必遵守国家互联网信息管理办法规定,我们拒绝任何色情小说,一经发现,即作删除!本站所收录作品、社区、书库评论及本站所做之广告均属其个人行为,与本站立场无关</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<span class="gotop" id="btn_back_top" title="返回顶部">
|
||||||
|
<img src="/template/kuangyu/home/bai_web/images/gotop.png" data-src="/template/kuangyu/home/bai_web/images/gotop.png" alt="返回顶部"
|
||||||
|
ysrc="/template/kuangyu/home/bai_web/images/gotop.png">
|
||||||
|
</span>
|
||||||
23
code/app/home/view/videoDadi/pc/public/historyNovelList.html
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="/pc/novel/332.html" target="_blank">
|
||||||
|
<img class="lazyload-img"
|
||||||
|
src="/static/img/default.jpg" data-src="https://www.630zw.org/img/176943.jpg"></a>
|
||||||
|
</td>
|
||||||
|
<td class="t2">
|
||||||
|
<a href="/pc/novel/332.html" target="_blank">我真是一条龙</a>
|
||||||
|
</td>
|
||||||
|
<td class="t3">
|
||||||
|
<a href="/pc/chapter/1-1-1.html" target="_blank">老读者必看公告!!!</a>
|
||||||
|
</td>
|
||||||
|
<td class="t4">
|
||||||
|
<a href="/pc/novel/332.html" target="_blank">兔子很淡定</a>
|
||||||
|
</td>
|
||||||
|
<td class="t5">3天前</td>
|
||||||
|
|
||||||
|
<td class="t6">已完结</td>
|
||||||
|
<td class="t7">
|
||||||
|
<a href="/pc/chapter/1-1-1.html" class="goon" target="_blank">阅读</a>
|
||||||
|
<i><span class="Collection" ajax-get="" >删除</span></i>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
15
code/app/home/view/videoDadi/pc/public/hostListImg.html
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<div class="bookLink">
|
||||||
|
<a href="/pc/novel/265.html" target="_blank">
|
||||||
|
<div class="bookImg">
|
||||||
|
<img class="lazyload-img"
|
||||||
|
src="/static/img/default.jpg" data-src="https://www.630zw.org/img/176943.jpg">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h2>重生八零:寡妇带娃巧发家</h2>
|
||||||
|
<span>姣大憨</span>
|
||||||
|
<p> 【萌宝+美食+种田+爽文】现代单身美食博主许芳华一朝穿越,竟成为八零年代小寡妇。 丈夫因公殉职,婆婆小姑子霸占抚恤金不撒手,婆家兄长对这三间瓦房虎视眈眈。
|
||||||
|
许芳华看着怀里瑟瑟发抖的小女儿,撸起袖子就去虐渣。吃了我的给我吐出来,占了我的给我还回来! 作为一个现代独立女性,看她如何用美食养娃致富,人生赢家妥妥的!
|
||||||
|
本站提示:各位书友要是觉得《重生八零:寡妇带娃巧发家》还不错的话请不要忘记向您QQ群和微博里的朋友推荐哦!</p>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
3
code/app/home/view/videoDadi/pc/public/hostListText.html
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<div class="bookLink oneLine">
|
||||||
|
<a href="/pc/novel/293.html" target="_blank"><em>「武侠仙侠」</em>玻璃焰</a>
|
||||||
|
</div>
|
||||||
17
code/app/home/view/videoDadi/pc/public/indexBoyNewsList.html
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<li>
|
||||||
|
<h3><a href="/pc/novel/293.html" title="玻璃焰" target="_blank">玻璃焰</a></h3>
|
||||||
|
<div class="book_inf">
|
||||||
|
<span class="aut">美绿哔哔</span>
|
||||||
|
<span class="tag"><a href="/lists/19.html" target="_blank">武侠仙侠</a></span>
|
||||||
|
<a href="/pc/novel/293.html" title="玻璃焰" target="_blank" class="book_cov">
|
||||||
|
<img class="lazyload_book_cover lazyload-img"
|
||||||
|
src="/static/img/default.jpg" data-src="https://www.630zw.org/img/176943.jpg"
|
||||||
|
alt="玻璃焰">
|
||||||
|
</a>
|
||||||
|
<p class="int"> [已签约实体待上市]【天生坏种x清冷校花】【大学校园、男追女、协议情侣、强制爱、破镜重圆】黎幸在整个西京大学都很有名。
|
||||||
|
高考状元,够美,够穷。这样的人,外貌不是恩赐,是原罪。楼崇,出生即登上金字塔最顶层的存在优越家世,顶级皮囊但却是个十足十的人渣。
|
||||||
|
——这样两个毫无交集的人,某天却被人撞见楼崇的阿斯顿马丁车内黎幸被单手抱起跨坐在腿上,后背抵着方向盘车窗光影交错,男人冷白精致的侧脸清晰可见,扣着她的手腕,亲自教她怎么扯开自己的领结。
|
||||||
|
—— “协议女友,知道什么意思吗?” “意思是牵手,接吻,拥抱,上床。” “以及,爱上我。” “一步不能少。”—— “玻璃焰,玻璃高温产生的火焰,银蓝色,很美。”
|
||||||
|
本站提示:各位书友要是觉得《玻璃焰》还不错的话请不要忘记向您QQ群和微博里的朋友推荐哦!</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
44
code/app/home/view/videoDadi/pc/public/indexBoyNewsOne.html
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<div class="f3_L">
|
||||||
|
<h3><a href="/pc/novel/294.html" title="渣攻的白月光总对我打直球" target="_blank">渣攻的白月光总对我打直球</a></h3>
|
||||||
|
<a href="/pc/novel/294.html" title="渣攻的白月光总对我打直球" target="_blank" class="book_cov">
|
||||||
|
<img class="lazyload_book_cover lazyload-img"
|
||||||
|
src="/static/img/default.jpg" data-src="https://www.630zw.org/img/176943.jpg"
|
||||||
|
alt="渣攻的白月光总对我打直球">
|
||||||
|
</a>
|
||||||
|
<div class="book_inf">
|
||||||
|
<div class="book_inf01">
|
||||||
|
<span class="aut">作者:不见仙踪</span>
|
||||||
|
<span class="fr">分类:<a href="/lists/19.html" target="_blank">武侠仙侠</a></span>
|
||||||
|
<span>字数:24.20万字+</span>
|
||||||
|
<span class="fr">进度:已完结</span>
|
||||||
|
<span>总点击:0</span>
|
||||||
|
</div>
|
||||||
|
<p class="int"> 【下本开《分手后四个鬼攻同时找上我》嗷~】 大二上学期,宣从南被一个温柔至极的男人追求;大二下学期,宣从南和沈迁在一起。
|
||||||
|
两个人谈了一年恋爱,宣从南发现,沈迁照常温柔,但他却常常把这样的话挂在嘴边: “不要笑。” “安静一点。” “不要太闹腾。” “眼里不要有温度。” “这样才像他。” 宣从南:……哦。
|
||||||
|
宣从南走了,潇洒果决,晚上却在路边捡到一个看起来落魄至极的男人。他耷拉着眉眼,带口罩,安静地坐在花坛边,似乎是在晒月光。 这人倒是很安静,还不笑,更不闹腾,眼里也没有温度。
|
||||||
|
宣从南把人捡回家了。他发现,这个名叫顾拾的男人竟然是娱乐圈里的顶流,只不过他不太关注娱乐圈,这才错误地把拥有千万粉丝的人捡回了家。
|
||||||
|
宣从南还发现,顾拾虽然过分冷淡,但他打直球说能不能喜欢我;顾拾虽然安静不闹腾,但他打直球说能不能抱抱我;顾拾虽然眼睛里没什么温度,但他打直球说能不能做…… 宣从南:这就是顶流吗?
|
||||||
|
“同居”段时间,两人顺理成章地谈恋爱。 又同居段时间,宣从南忽而得知顾拾就是沈迁爱而不得的白月光。 宣从南:……命运啊。
|
||||||
|
为了避免尴尬,他收拾行李又打算跑,刚走到门口却只听一道开门声,顾拾裹挟着外面的寒气进来,轻轻带上门。 宣从南:…… 顾拾冷淡的目光从上到下打量他,最后落在行李箱上。 “去哪儿?”他问。
|
||||||
|
宣从南捏紧行李杆,正欲说话,顾拾又道: “你想甩了我?” …… 这天晚上有狗仔拍到顾拾进了一间出租屋。 除了顾拾,窗户玻璃上还映出另外一道男性身影,他手边还有个行李箱。
|
||||||
|
紧接着,一向喜怒不形于色的顾拾猛地推开行李箱,拽起另一人的手腕去了卧室。 一夜没出来。 【阅读指南】: *1V1,HE,甜文。 *攻非常非常非常爱受,非常非常非常宠受
|
||||||
|
*攻能直球绿茶也能偏执疯批,属性复杂,天使们直接看文叭 *有打脸剧情 *无原型,勿代入现实。我写文为了快乐,也只想让读者快乐~ *感谢支持正版,给大家鞠躬啦~
|
||||||
|
★下本《分手后四个鬼攻同时找上我》求收藏~ 宴祀亭是个小道士,山生山长,没见过外面的天,最大的雄心壮志是杀死鬼王。 但他怕鬼,还花心。 下山后进城,他在酒吧泡了一个大学教授做男朋友。
|
||||||
|
教授克制古板,一副性冷淡的模样。 但他“暴力”且沉沦地教会了宴祀亭在床上的108种姿势。 每天晚上宴祀亭都被哔的“身心俱散”。 随着感情渐深,教授带宴祀亭回家见父母。 他家里有鬼,好多鬼。
|
||||||
|
那些鬼躲在门外、趴在床底听他和教授...... 宴祀亭瑟瑟发抖,教授却像没事人,依然一次比一次深入。 宴祀亭:师父救命——
|
||||||
|
日复一日,教授变得愈发过分。他中午要抱宴祀亭亲昵,下午要抱宴祀亭厮磨,晚上要抱宴祀亭深入交流,非常不节制。 最后他还设门禁时间限制宴祀亭的出行,控制欲极强。 宴祀亭受不了,把人踹了。
|
||||||
|
他谈了第二个男朋友。 但为什么温柔先生最后因他变得野蛮,各种道具都上场; 绅士先生因他变成恶棍,让他不准离开自己的视线; 禁欲先生因他变得纵荡,永远都要按着他驰骋......
|
||||||
|
宴祀亭:师父我遇到了好多变态,我要回山立刻马上! 身心遭受“严重摧残”的宴祀亭决定封心锁爱,这辈子都不要泡男人了,要去完成自己的雄心壮志——杀死鬼王。
|
||||||
|
紧接着被甩的教授将他堵在家门口,唇角带笑声含魅:“不是要杀我吗?我来了。” 晦暗夜色下,教授身后又慢慢浮现出温柔先生、绅士先生、禁欲先生的身影,他们都在盯着宴祀亭。
|
||||||
|
教授柔声道:“你是要我们一起来,还是一个一个来呢。” 宴祀亭抖如筛糠无可逃脱地被他们推进了卧室。恶鬼们商量谁先来,最后愉快地决定一起。 “不要,救命啊啊啊啊啊啊啊啊啊——” *切片攻
|
||||||
|
*所有躲门外趴床底听床戏的,都是攻的切片 ★求预收《不是人也能攻我?》收藏~ 司徒禁肩宽窄腰身材好,胸肌饱满腿长,在男同界是被许多人觊觎的优质1。
|
||||||
|
有人找司徒禁拍钙片,身为直男的司徒禁果断拒绝。 等再醒来,司徒禁发现他穿到了异世界。 这里到处是妖魔鬼怪。
|
||||||
|
司徒禁有个极倒霉的倒霉体质,喝凉水塞牙缝,吃东西噎喉咙,睡觉能窒息。再又一次平地摔跤后,司徒禁气得破口大骂。 那些神经病又来了。 玛德,这次还敢撕他衣服!
|
||||||
|
这个世界不止他一个倒霉蛋,还有ABCDE等男人进来了。 老乡见老乡两眼泪汪汪,司徒禁和大家互相扶持,把这群想上他的变态杀得四处逃窜。 然后有一天,司徒禁看见男人 A 帮鬼撕碎了他的上衣。
|
||||||
|
司徒禁:? 男人B帮鬼扯烂了他的裤子。 司徒禁:?? 男人C帮鬼拽掉了他的衬衫夹。 司徒禁:??? 混乱中,谁摸了他的胸肌! 谁捏了他的屁股!! 谁掰开了他的腿!!!
|
||||||
|
司徒禁冷笑:想攻我的千千万,你算哪块小饼干?! ABCDE 得逞,鬼得逞,怪物藤蔓得手,触手得逞...... 被迫野战后司徒禁躺在草地里抽事后烟,沉思:是个人都能攻我?不是人也能攻我?
|
||||||
|
而他不知道,他进入的异世界其实是一个系列视频,无数观众坐在电视机前,每天就为了看他闯关。 司徒禁:什么关?“床”关吗? *切片攻,每个都为了受打得头破血流,甚至想杀了自己的分身
|
||||||
|
*受极度理智冷静大胸美人 *攻疯得一批,每个切片都想独占囚禁受 *直播镜头前的观众只能看正经闯关,其他的看不到,花钱做榜一也没用
|
||||||
|
本站提示:各位书友要是觉得《渣攻的白月光总对我打直球》还不错的话请不要忘记向您QQ群和微博里的朋友推荐哦!</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
16
code/app/home/view/videoDadi/pc/public/indexBoyRankList.html
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<li>
|
||||||
|
<em class="red_bg">{$key+=1}</em>
|
||||||
|
<h3 class="name"><a href="/pc/novel/276.html" title="娱乐宗师" target="_blank">娱乐宗师</a></h3>
|
||||||
|
<div class="open">
|
||||||
|
<a href="/pc/novel/276.html" title="娱乐宗师" target="_blank" class="book_cov">
|
||||||
|
<img class="lazyload_book_cover lazyload-img"
|
||||||
|
src="/static/img/default.jpg" data-src="https://www.630zw.org/img/176943.jpg" alt="娱乐宗师">
|
||||||
|
</a>
|
||||||
|
<div class="book_inf">
|
||||||
|
<span class="aut">作者:猩猩崛起</span>
|
||||||
|
<span>类别:<a href="/lists/19.html" target="_blank">武侠仙侠</a></span>
|
||||||
|
<p class="int"> 小工作室的微电影导演,重生平行世界!踏上娱乐征途!
|
||||||
|
本站提示:各位书友要是觉得《娱乐宗师》还不错的话请不要忘记向您QQ群和微博里的朋友推荐哦!</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
26
code/app/home/view/videoDadi/pc/public/indexBoyRankOne.html
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<li class="lis_sh">
|
||||||
|
<em class="red_bg">1</em>
|
||||||
|
<h3 class="name"><a href="/pc/novel/275.html" title="捻转步舞曲[花滑]" target="_blank">捻转步舞曲[花滑]</a>
|
||||||
|
</h3>
|
||||||
|
<div class="open">
|
||||||
|
<a href="/pc/novel/275.html" title="捻转步舞曲[花滑]" target="_blank" class="book_cov">
|
||||||
|
<img class="lazyload_book_cover lazyload-img"
|
||||||
|
src="/static/img/default.jpg" data-src="https://www.630zw.org/img/176943.jpg" alt="捻转步舞曲[花滑]">
|
||||||
|
</a>
|
||||||
|
<div class="book_inf">
|
||||||
|
<span class="aut">作者:梧桐树下wt</span>
|
||||||
|
<span>类别:<a href="/lists/19.html" target="_blank">武侠仙侠</a></span>
|
||||||
|
<p class="int"> 【本文将会于2023年9月30日星期六入V,谢谢支持!】 【求投票——《成长·逆袭》主题征文——作品投票——鱼跃龙门后来居上】
|
||||||
|
【每5K营养液加更一章】 作为刚升组没多久,在华国内难得可以跳跃演绎两手抓的男子单人花滑选手,郁辰被队里的教练们给予极大的厚望。
|
||||||
|
并且整个教练团也在想尽各种方法教导这位,冰上冰下两个样子,经常会躲起来不见人的闷葫芦。 “到底有什么办法,能让那家伙在冰下的时候,有上冰那会百分之一的灵气啊!”
|
||||||
|
只有郁辰他本人知道——他无论什么时候,都爱惨了艺术与冰面结合起来的样子。 ——只是台下之后,不会表达而已。
|
||||||
|
一切的变动,从他没忍住在莫斯科赛后偷瞒着教练,去看了一场芭蕾舞舞台剧之后。 追着一见钟情的男孩来到异国,并且努力学了中文的佐切卡:你好,郁!能我你拥抱?
|
||||||
|
沉思了好久,才理清楚他语法顺序的郁辰:你学顺了中文再和我说话吧。 佐切卡(惊喜):那就是可以了!
|
||||||
|
于是某位男单运动员就被纤细高挑练跳舞的熊抱住了一个下午,跑都跑不掉。 来自莫斯科的芭蕾舞者X略显自闭的花滑选手 1、故事里面所有人物故事,经历都没有原型。
|
||||||
|
2、作者对于花滑的认知还没有到完全专业水平,但是所有技术动作描写,比赛规则描述,都有资料支持。
|
||||||
|
3、如果有技术问题需要讨论可以随时留评,我看到后会回复的。看了每章词汇解释还是不懂的话也可以留评,我会想办法换一种解释试试看的(作者是真想教会你们滑冰系列)。
|
||||||
|
4、最重要一点——无论怎么样的情感下,都请不要轻易怀疑运动员对该项目的热爱。 5、停在‘4’好像不太好,所以写了个‘5’。
|
||||||
|
本站提示:各位书友要是觉得《捻转步舞曲[花滑]》还不错的话请不要忘记向您QQ群和微博里的朋友推荐哦!</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<li>
|
||||||
|
<ul>
|
||||||
|
<li class="lb"><a href="/" target="_blank">耽美百合</a></li>
|
||||||
|
<li class="sm">
|
||||||
|
<h3><a href="/pc/novel/332.html" title="我真是一条龙" target="_blank">我真是一条龙</a></h3>
|
||||||
|
</li>
|
||||||
|
<li class="gx"><a href="/pc/chapter/1-1-1.html" title="老读者必看公告!!!"
|
||||||
|
target="_blank">老读者必看公告!!!</a></li>
|
||||||
|
<li class="zz">兔子很淡定</li>
|
||||||
|
<li class="sj">1天前</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
32
code/app/home/view/videoDadi/pc/public/shuKuNovelList.html
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<li>
|
||||||
|
<a href="/pc/novel/334.html" target="_blank" class="book_cov" title="落魄千金美食发家日常">
|
||||||
|
<img class="lazyload_book_cover lazyload-img"
|
||||||
|
src="/static/img/default.jpg" data-src="https://www.630zw.org/img/176943.jpg" alt="落魄千金美食发家日常">
|
||||||
|
</a>
|
||||||
|
<div class="book_inf">
|
||||||
|
<h3><a href="/pc/novel/334.html" title="落魄千金美食发家日常" target="_blank">落魄千金美食发家日常</a></h3>
|
||||||
|
<p>
|
||||||
|
<span>作者:<a href="/search/%E9%B1%BC%E6%98%86%E5%AD%90.html" title="鱼昆子">鱼昆子</a></span>
|
||||||
|
<span>分类:<a href="/lists/4.html" title="男生">男生</a></span>
|
||||||
|
<span>状态:已完结</span>
|
||||||
|
<span>总字数:43.80万字+</span>
|
||||||
|
</p>
|
||||||
|
<p class="tags">
|
||||||
|
<i>标签:</i>
|
||||||
|
<i></i>
|
||||||
|
</p>
|
||||||
|
<p><b>最近更新:</b><a href="/pc/chapter/1-1-1.html" title="219 桃花酿" target="_blank">219 桃花酿</a>
|
||||||
|
</p>
|
||||||
|
<p class="int"> 正文已完结,福利番外待续! 预收《癫疯人生有多爽你知道吗》《当家主母的咸鱼美食日常》戳专栏求收藏。 ——————— 温仲夏身为百万粉丝美食博主,一朝穿越。
|
||||||
|
好消息,穿成尚书千金。 坏消息,父兄获罪被贬到千里之外。 身边只有一个柔弱的嫂嫂和年幼的小弟。 开局就是一个交不上房租,大雪天几乎要流落街头的惨境。 温仲夏来不及哭,撸起袖子就是干。
|
||||||
|
红烧肉火锅烧烤爆米花卷饼卤肉奶茶小蛋糕…… 她就不信这些东京人都不爱吃。 不成的话,她还有麻辣烫烤鸭炸鸡酸辣粉炸酱面汤圆大馄饨…… 一不小心,落魄千金混成东京知名女掌柜。 …… 小剧场:
|
||||||
|
一众贵女听闻温仲夏当街叫卖吃食后,纷纷对她这种抛头露面的行为狠狠批判。 几天后,她们却在温仲夏的食店门口不期而遇。 “你怎么来了,不会是来买蛋挞的吧?” “难道你也是?”
|
||||||
|
“我可不是,我还要买奶油蛋糕呢。” 说好的不齿与之为伍呢? 这时店内传来吆喝:“数量有限,先到先得。” 贵女们忙不迭地往里冲。 “我先来的!” ①本文主线是美食和日常。
|
||||||
|
②背景主要参考宋朝,不严谨的地方请见谅。
|
||||||
|
本站提示:各位书友要是觉得《落魄千金美食发家日常》还不错的话请不要忘记向您QQ群和微博里的朋友推荐哦!</p>
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
<span>更新时间:2025-03-20 23:59</span>
|
||||||
|
<a href="/pc/novel/334.html" target="_blank" class="read_btn btn">立即阅读</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<li>
|
||||||
|
<a href="/pc/novel/334.html" title="落魄千金美食发家日常" target="_blank" class="book_cov">
|
||||||
|
<img class="lazyload_lb_nv lazyload-img"
|
||||||
|
src="/static/img/default.jpg" data-src="https://www.630zw.org/img/176943.jpg"
|
||||||
|
alt="落魄千金美食发家日常">
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<li data-desc=" 正文已完结,福利番外待续! 预收《癫疯人生有多爽你知道吗》《当家主母的咸鱼美食日常》戳专栏求收藏。 ——————— 温仲夏身为百万粉丝美食博主,一朝穿越。 好消息,穿成尚书千金。 坏消息,父兄获罪被贬到千里之外。 身边只有一个柔弱的嫂嫂和年幼的小弟。 开局就是一个交不上房租,大雪天几乎要流落街头的惨境。 温仲夏来不及哭,撸起袖子就是干。 红烧肉火锅烧烤爆米花卷饼卤肉奶茶小蛋糕…… 她就不信这些东京人都不爱吃。 不成的话,她还有麻辣烫烤鸭炸鸡酸辣粉炸酱面汤圆大馄饨…… 一不小心,落魄千金混成东京知名女掌柜。 …… 小剧场: 一众贵女听闻温仲夏当街叫卖吃食后,纷纷对她这种抛头露面的行为狠狠批判。 几天后,她们却在温仲夏的食店门口不期而遇。 “你怎么来了,不会是来买蛋挞的吧?” “难道你也是?” “我可不是,我还要买奶油蛋糕呢。” 说好的不齿与之为伍呢? 这时店内传来吆喝:“数量有限,先到先得。” 贵女们忙不迭地往里冲。 “我先来的!” ①本文主线是美食和日常。 ②背景主要参考宋朝,不严谨的地方请见谅。
|
||||||
|
本站提示:各位书友要是觉得《落魄千金美食发家日常》还不错的话请不要忘记向您QQ群和微博里的朋友推荐哦!" class="on">
|
||||||
|
<s class="arr"></s>
|
||||||
|
<s class="xh">1</s>
|
||||||
|
<i>落魄千金美食发家日常</i>
|
||||||
|
</li>
|
||||||
49
code/app/home/view/videoDadi/pc/user/getBookShelf.html
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
{extend name="basePc" /}
|
||||||
|
{block name="title"}我的书架{/block}
|
||||||
|
{block name="keywords"}我的书架{/block}
|
||||||
|
{block name="description"}我的书架{/block}
|
||||||
|
{block name="head"}
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content="{$strTitle??''}" />
|
||||||
|
<meta property="og:description" content="{$strDescription??''}" />
|
||||||
|
<meta property="og:url" content="https://{$DomainModel->d_domain}{$strBookShelfUrlTemp}" />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://{$DomainModel->d_domain}{$strBookShelfUrlTemp}",
|
||||||
|
"@type": "article",
|
||||||
|
"headline": "我的书架",
|
||||||
|
"description": "我的书架",
|
||||||
|
"datePublished": "{:date('Y-m-d')}"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{block name="body-class"}novel_home{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="layout layout3 layout-col3 fl">
|
||||||
|
<h2 class="layout-tit">我的书架</h2>
|
||||||
|
<div class="layout layout-col3" id="shujiaContainer"></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
<script>
|
||||||
|
const strNovelUrlTemp = `{site:replace code="NOVEL_INFO_URL"}`;
|
||||||
|
const strNovelChapterUrlTemp = `{site:replace code="CONTENT_INFO_URL"}`;
|
||||||
|
const strSearchUrlTemp = `{site:replace code="SEARCH_INFO_URL"}`;
|
||||||
|
// 调用展示书架功能
|
||||||
|
displayShujia();
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
49
code/app/home/view/videoDadi/pc/user/getHistory.html
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
{extend name="basePc" /}
|
||||||
|
{block name="title"}我的阅读记录{/block}
|
||||||
|
{block name="keywords"}我的阅读记录{/block}
|
||||||
|
{block name="description"}我的阅读记录{/block}
|
||||||
|
{block name="head"}
|
||||||
|
<!-- 社交媒体标签 -->
|
||||||
|
<meta property="og:title" content="{$strTitle??''}" />
|
||||||
|
<meta property="og:description" content="{$strDescription??''}" />
|
||||||
|
<meta property="og:url" content="https://{$DomainModel->d_domain}{$strBookShelfUrlTemp}" />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<!-- 结构化数据 -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://{$DomainModel->d_domain}{$strBookShelfUrlTemp}",
|
||||||
|
"@type": "article",
|
||||||
|
"headline": "{$strTitle??''}",
|
||||||
|
"description": "{$strDescription??''}",
|
||||||
|
"datePublished": "{:date('Y-m-d')}"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{block name="head-js"}{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{block name="body-class"}novel_home{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="layout layout3 layout-col3 fl">
|
||||||
|
<h2 class="layout-tit">阅读记录</h2>
|
||||||
|
<div class="layout layout-col3" id="shujiaContainer"></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
<script>
|
||||||
|
const strNovelUrlTemp = `{site:replace code="NOVEL_INFO_URL"}`;
|
||||||
|
const strNovelChapterUrlTemp = `{site:replace code="CONTENT_INFO_URL"}`;
|
||||||
|
const strSearchUrlTemp = `{site:replace code="SEARCH_INFO_URL"}`;
|
||||||
|
// 调用展示书架功能
|
||||||
|
displayHistory();
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
238
code/app/home/view/videoDadi/public/body-header.html
Normal file
@@ -0,0 +1,238 @@
|
|||||||
|
<div class="v-s-nav-box-h">
|
||||||
|
<!-- head -->
|
||||||
|
<div class="s-main-box">
|
||||||
|
<div class="s-logo"><a href="/0.html">
|
||||||
|
<img src="/assets/images/logo.png"></a>
|
||||||
|
</div>
|
||||||
|
<div class="v-s-nav-search-box3">
|
||||||
|
<a href="/searchhome/0.html">
|
||||||
|
<div class="s-search">
|
||||||
|
<i class="s-icon-search"></i>
|
||||||
|
<span class="s-tips">{site:wz wz="大家都在搜..." /}</span>
|
||||||
|
<div class="s-tags">
|
||||||
|
<span class="s-link-tag">{site:wz wz="少妇" /}</span>
|
||||||
|
<span class="s-link-tag">{site:wz wz="按摩" /}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<span class="js-show-ios site is-ios" onclick="showSiteTips(999)">{site:wz wz="保存网址" /} </span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="s-main-box-middle">
|
||||||
|
<div
|
||||||
|
class="swiper swiper-top-zxcv swiper-initialized swiper-horizontal swiper-pointer-events swiper-ios swiper-backface-hidden">
|
||||||
|
<div class="swiper-wrapper">
|
||||||
|
<div class="swiper-slide">
|
||||||
|
<a href="https://piga350.xyz" target="_blank">
|
||||||
|
<img src="/assets/test/ad-swiper.jpg" style="display: block;width:100%" alt="">
|
||||||
|
<div class="content">2024-06-25 05:34:59</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="swiper-slide">
|
||||||
|
<a href="https://piga350.xyz" target="_blank">
|
||||||
|
<img src="/assets/test/ad-swiper.jpg" style="display: block;width:100%" alt="">
|
||||||
|
<div class="content">2024-06-25 05:34:59</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="swiper-pagination"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="v-s-ul-time-vs_442378ea5a0a0b9d99bed43dc146baa0">
|
||||||
|
<a href="/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 nav-menu-selected">{site:wz wz="首页" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/chigua/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 s-txt-light">{site:wz wz="吃瓜" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/yp/0.html?t=by">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 s-txt-new">{site:wz wz="同城交友" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=1">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 "> {site:wz wz="国产" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/novel/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="小说" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/comic/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="漫画" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=3">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="日韩" /} </div>
|
||||||
|
</a>
|
||||||
|
<a class="js-17c" alt="5000" href="/cy/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="春药商城" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=40">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="原创" /} </div>
|
||||||
|
</a>
|
||||||
|
<a class="js-17c" alt="75" href="/ai/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="一键脱衣" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/games/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="成人游戏" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/zhibo/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="在线直播" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/nvyou/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="女优" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=2">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="传媒" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=4">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 "> {site:wz wz="欧美" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=5">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 "> {site:wz wz="动漫" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=6">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="AI换脸" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=7">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 "> {site:wz wz="主播" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=8">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="AV解说" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=10">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 "> {site:wz wz="同性" /} </div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="v-s-ul-category-tag">
|
||||||
|
{block name="category-tag"} {site:wz wz="这里填充各个页面的子分类" /}{/block}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div style="margin-top:0px;width:100%;">
|
||||||
|
<div class="main-box">
|
||||||
|
<div class="alert alert-primary" style="padding: 5px 10px;margin-bottom:0;border-radius:0px;"><strong><i
|
||||||
|
class="bi bi-bell-fill"></i></strong>
|
||||||
|
<div id="scroll-outer" class="scroll__outer">
|
||||||
|
<div id="scroll-inner" class="scroll__inner"
|
||||||
|
style="transform: translate3d(-180.5px, 0px, 0px);">
|
||||||
|
<div class="scroll__text">
|
||||||
|
{site:wz wz="本站永久域名:17c10.app,请收藏!发送任意邮件至yiqicao17c@gmail.com 也可秒得最新地址!" /}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="scroll__text" id="last-text">
|
||||||
|
{site:wz wz="本站永久域名:17c10.app,请收藏!发送任意邮件至yiqicao17c@gmail.com 也可秒得最新地址!" /}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="content-box">
|
||||||
|
|
||||||
|
<div class="item-box" style="margin-top:0;">
|
||||||
|
<div class="main-box">
|
||||||
|
<div class="index-items-wrap">
|
||||||
|
<div class="grid-box-s2">
|
||||||
|
<div>
|
||||||
|
<img class="pre-img lozad"
|
||||||
|
data-src="https://img.sinw.net//upload/2024-04-05/e658f6f5ea9474380609e824.js"
|
||||||
|
src="/assets/images/loading_img_bg_default.jpg?v={site:cfg code='STATIC_FILE_VERSION' encode='false'/}">
|
||||||
|
<a href="https://piga350.xyz" rel="external nofollow" target="_blank" alt="12">
|
||||||
|
<div class="name">{site:wz wz="同城约炮" /}</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img class="pre-img lozad"
|
||||||
|
data-src="https://img.sinw.net//upload/2024-04-05/e658f6f5ea9474380609e824.js"
|
||||||
|
src="/assets/images/loading_img_bg_default.jpg?v={site:cfg code='STATIC_FILE_VERSION' encode='false'/}">
|
||||||
|
<a href="https://piga350.xyz" rel="external nofollow" target="_blank" alt="12">
|
||||||
|
<div class="name">{site:wz wz="同城约炮" /}</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="p-card-box">
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://hwf.hongshengzhujian.top/jx/1.html?channelCode=jxpl14" alt="19"
|
||||||
|
target="_blank">
|
||||||
|
<b>{site:wz wz="吉祥直播" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://piga350.xyz" alt="20" target="_blank">
|
||||||
|
<b>{site:wz wz="高端外围" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://yqc.cbfxx.com/2196.html" alt="21" target="_blank">
|
||||||
|
<b>{site:wz wz="伊人直播" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://piga350.xyz" alt="22" target="_blank">
|
||||||
|
<b>{site:wz wz="同城可约" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://9io7vh.xyz:7899/index/17c05.html?channelCode=caox5" alt="23"
|
||||||
|
target="_blank">
|
||||||
|
<b>{site:wz wz="直播大秀" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://8033215.cc:8443?shareName=8033191.cc" alt="24" target="_blank">
|
||||||
|
<b>{site:wz wz="赚钱棋牌" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://8033215.cc:8443?shareName=8033191.cc" alt="25" target="_blank">
|
||||||
|
<b>{site:wz wz="送888元" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://8033215.cc:8443?shareName=8033191.cc" alt="26" target="_blank">
|
||||||
|
<b>{site:wz wz="捕鱼达人" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://2443385.cc:8443/?shareName=2443359.cc" alt="27" target="_blank">
|
||||||
|
<b>{site:wz wz="澳门新葡京" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://2443385.cc:8443/?shareName=2443359.cc" alt="28" target="_blank">
|
||||||
|
<b>{site:wz wz="提款秒到" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
56
code/app/home/view/videoDadi/public/footer.html
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<!-- footer -->
|
||||||
|
<div class="container">
|
||||||
|
<div id="firendlink">
|
||||||
|
<img src="/statics/icon/icon_26.png" style="width:20px">友情连接:
|
||||||
|
|
||||||
|
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||||
|
<a href="/robots.txt" target="_blank">网站地图</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="stui-foot clearfix">
|
||||||
|
<div class="col-pd text-center hidden-xs">Copyright
|
||||||
|
<span class="fontArial"></span> 2009-2013
|
||||||
|
反馈邮箱:{site:cfg code="YOU_XIANG" encode="false"/} Inc. All Rights Reserved.
|
||||||
|
</div>
|
||||||
|
<p class="share bdsharebuttonbox text-center margin-0 hidden-sm hidden-xs bdshare-button-style0-24"
|
||||||
|
data-bd-bind="1735960397007">
|
||||||
|
<span class="bds_shere"></span>
|
||||||
|
<a class="bds_qzone" data-cmd="qzone" title="分享到QQ空间"></a>
|
||||||
|
<a class="bds_tsina" data-cmd="tsina" title="分享到新浪微博"></a>
|
||||||
|
<a class="bds_weixin" data-cmd="weixin" title="分享到微信"></a>
|
||||||
|
<a class="bds_tqq" data-cmd="tqq" title="分享到腾讯微博"></a>
|
||||||
|
<a class="bds_sqq" data-cmd="sqq" title="分享到QQ好友"></a>
|
||||||
|
<a class="bds_bdhome" data-cmd="bdhome" title="分享到百度新首页"></a>
|
||||||
|
<a class="bds_tqf" data-cmd="tqf" title="分享到腾讯朋友"></a>
|
||||||
|
<a class="bds_youdao" data-cmd="youdao" title="分享到有道云笔记"></a>
|
||||||
|
<a class="bds_more" data-cmd="more" title="更多"></a>
|
||||||
|
</p>
|
||||||
|
<p class="text-center hidden-xs"><a style="color: rgb(174, 124, 38);" href="/"></a></p>
|
||||||
|
<p class="text-muted text-center visible-xs">Copyright © 2008-2018</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<ul class="stui-extra clearfix">
|
||||||
|
<li>
|
||||||
|
<a style="color: rgb(17, 84, 187);" class="backtop" href="javascript:scroll(0,0)">
|
||||||
|
<i class="icon iconfont icon-less"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="hidden-xs">
|
||||||
|
<a style="color: rgb(155, 154, 207);" class="copylink" href="javascript:;">
|
||||||
|
<i class="icon iconfont icon-share"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="visible-xs">
|
||||||
|
<a style="color: rgb(124, 1, 82);" class="open-share" href="javascript:;">
|
||||||
|
<i class="icon iconfont icon-share"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
4
code/app/home/view/videoDadi/public/guide.html
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<div class="_2ca0d61e27 _8fbca269d1">
|
||||||
|
<div id="ShareButton"><img sizes="100vh" class="point fill undefined" height="25" width="25" alt="" src="/assets/images/help/share_4.png"></div>
|
||||||
|
<a href="#"><img sizes="100vh" class="point fill undefined" height="25" width="25" alt="" src="/assets/images/icon/customer.png"></a>
|
||||||
|
</div>
|
||||||
37
code/app/home/view/videoDadi/public/html-header.html
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="theme-color" content="#000">
|
||||||
|
<meta name="viewport"
|
||||||
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||||
|
<meta http-equiv="Cache-Control" content="no-transform">
|
||||||
|
<meta http-equiv="Cache-Control" content="no-siteapp">
|
||||||
|
<meta name="applicable-device" content="mobile">
|
||||||
|
<meta name="c" c="0">
|
||||||
|
<meta name="my" k="aporn">
|
||||||
|
<title>17c</title>
|
||||||
|
<!-- <script src="https://250eb3b1370e859c5dg.keilfcy.com:8007/sc/4790?n=hynlegri"></script> -->
|
||||||
|
<link rel="apple-touch-icon" href="/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/bootstrap.px.min.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/bootstrap-icons.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/atom.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/bstyle-v5.pp.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/mobile.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/sbm.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/pretty.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/html.css">
|
||||||
|
|
||||||
|
<script type="text/javascript" src="/assets/js/jquery-2.2.4.min.js"></script>
|
||||||
|
<script type="application/javascript"
|
||||||
|
src="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-M/Swiper/8.0.6/swiper-bundle.min.js" defer></script>
|
||||||
|
<script type="text/javascript" src="/assets/js/lozad.min.js"></script>
|
||||||
|
<script type="text/javascript" src="/assets/js/qrcode.min.js"></script>
|
||||||
|
<!-- <script type="text/javascript" src="/assets/js/sbm.js"></script> -->
|
||||||
|
<!-- <script type="text/javascript" src="/assets/js/bylqwya.js"></script> -->
|
||||||
|
<script type="text/javascript" src="/assets/js/html.js?v=8999999"></script>
|
||||||
|
|
||||||
|
<!-- <script type="text/javascript" src="/assets/js/clipboard.min.js"></script> -->
|
||||||
|
<!-- <script type="text/javascript" src="/assets/js/sweetalert2.js"></script> -->
|
||||||
|
<!-- <script type="text/javascript" src="/assets/js/boo.b.min.js"></script> -->
|
||||||
|
<!-- <script type="text/javascript" src="/assets/js/batom.min.js"></script>-->
|
||||||
|
<!-- <script type="text/javascript" src="/assets/js/utils_mobile-s2.js"></script> -->
|
||||||
16
code/app/home/view/videoDadi/public/index-item-head.html
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<div class="bg-top-pink bg-top-pink-minheight"></div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="title-text">{$strItemTiele}</div>
|
||||||
|
<div class="more">
|
||||||
|
<span class="icon">
|
||||||
|
<span class="icon__left-label">更多</span>
|
||||||
|
<a class="svg" href="{$strItemHref}">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
|
||||||
|
<path
|
||||||
|
d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z">
|
||||||
|
</path>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
21
code/app/home/view/videoDadi/public/index-swiper.html
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<div class="s-x-img-wrap index-s-x-img-wrap " style="max-height:1rem">
|
||||||
|
<div
|
||||||
|
class="swiper swiper-container-index s-st-swiper swiper-initialized swiper-horizontal swiper-pointer-events swiper-ios swiper-backface-hidden">
|
||||||
|
|
||||||
|
<div class="swiper-wrapper">
|
||||||
|
|
||||||
|
{php}
|
||||||
|
$codes = "[code]";
|
||||||
|
{/php}
|
||||||
|
{ad:list code="$codes" order="desc" limit="10" id="ad"}
|
||||||
|
<div class="swiper-slide" style="max-height:1rem">
|
||||||
|
<img src="{$ad.gg_tu_pian}" style="max-height:1rem">
|
||||||
|
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank">
|
||||||
|
<div class="content">{$ad.gg_wen_zi|customEntities|raw}</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{/ad:list}
|
||||||
|
</div>
|
||||||
|
<div class="swiper-pagination"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
215
code/app/home/view/videoDadi/public/main-head.html
Normal file
@@ -0,0 +1,215 @@
|
|||||||
|
<div class="v-s-nav-box-h">
|
||||||
|
<!-- head -->
|
||||||
|
<div class="s-main-box">
|
||||||
|
<div class="s-logo"><a href="/0.html">
|
||||||
|
<img src="/assets/images/logo.png"></a>
|
||||||
|
</div>
|
||||||
|
<div class="v-s-nav-search-box3">
|
||||||
|
<a href="/searchhome/0.html">
|
||||||
|
<div class="s-search">
|
||||||
|
<i class="s-icon-search"></i>
|
||||||
|
<span class="s-tips">{site:wz wz="大家都在搜..." /}</span>
|
||||||
|
<div class="s-tags">
|
||||||
|
<a class="s-link-tag" href="/searchhome/0.html">{site:wz wz="少妇" /}</a>
|
||||||
|
<a class="s-link-tag" href="/searchhome/0.html">{site:wz wz="按摩" /}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<span class="js-show-ios site is-ios" onclick="showSiteTips(999)">{site:wz wz="保存网址" /} </span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="s-main-box-middle">
|
||||||
|
<div
|
||||||
|
class="swiper swiper-top-zxcv swiper-initialized swiper-horizontal swiper-pointer-events swiper-ios swiper-backface-hidden">
|
||||||
|
<div class="swiper-wrapper">
|
||||||
|
<div class="swiper-slide">
|
||||||
|
<a href="https://piga350.xyz" target="_blank">
|
||||||
|
<img src="/assets/test/ad-swiper.jpg" style="display: block;width:100%" alt="">
|
||||||
|
<div class="content">2024-06-25 05:34:59</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="swiper-slide">
|
||||||
|
<a href="https://piga350.xyz" target="_blank">
|
||||||
|
<img src="/assets/test/ad-swiper.jpg" style="display: block;width:100%" alt="">
|
||||||
|
<div class="content">2024-06-25 05:34:59</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="swiper-pagination"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="v-s-ul-time-vs_442378ea5a0a0b9d99bed43dc146baa0">
|
||||||
|
<a href="/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 nav-menu-selected">{site:wz wz="首页" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/chigua/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 s-txt-light">{site:wz wz="吃瓜" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/yp/0.html?t=by">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 s-txt-new">{site:wz wz="同城交友" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=1">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 "> {site:wz wz="国产" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/novel/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="小说" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/comic/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="漫画" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=3">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="日韩" /} </div>
|
||||||
|
</a>
|
||||||
|
<a class="js-17c" alt="5000" href="/cy/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="春药商城" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=40">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="原创" /} </div>
|
||||||
|
</a>
|
||||||
|
<a class="js-17c" alt="75" href="/ai/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="一键脱衣" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/adult/games/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="成人游戏" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/zhibo/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="在线直播" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/nvyou/0.html">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="女优" /}</div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=2">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="传媒" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=4">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 "> {site:wz wz="欧美" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=5">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 "> {site:wz wz="动漫" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=6">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="AI换脸" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=7">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 "> {site:wz wz="主播" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=8">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 ">{site:wz wz="AV解说" /} </div>
|
||||||
|
</a>
|
||||||
|
<a href="/category/0.html?category_id=10">
|
||||||
|
<div class="v-s-li-nav-link-vs_442378ea5a0a0b9d99bed43dc146baa0 "> {site:wz wz="同性" /} </div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="v-s-ul-category-tag"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="content-box">
|
||||||
|
|
||||||
|
<div class="item-box" style="margin-top:0;">
|
||||||
|
<div class="main-box">
|
||||||
|
<div class="index-items-wrap">
|
||||||
|
<div class="grid-box-s2">
|
||||||
|
<div>
|
||||||
|
<img class="pre-img lozad"
|
||||||
|
data-src="https://img.sinw.net//upload/2024-04-05/e658f6f5ea9474380609e824.js"
|
||||||
|
src="/assets/images/loading_img_bg_default.jpg?v={site:cfg code='STATIC_FILE_VERSION' encode='false'/}">
|
||||||
|
<a href="https://piga350.xyz" rel="external nofollow" target="_blank" alt="12">
|
||||||
|
<div class="name">{site:wz wz="同城约炮" /}</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img class="pre-img lozad"
|
||||||
|
data-src="https://img.sinw.net//upload/2024-04-05/e658f6f5ea9474380609e824.js"
|
||||||
|
src="/assets/images/loading_img_bg_default.jpg?v={site:cfg code='STATIC_FILE_VERSION' encode='false'/}">
|
||||||
|
<a href="https://piga350.xyz" rel="external nofollow" target="_blank" alt="12">
|
||||||
|
<div class="name">{site:wz wz="同城约炮" /}</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="p-card-box">
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://hwf.hongshengzhujian.top/jx/1.html?channelCode=jxpl14" alt="19"
|
||||||
|
target="_blank">
|
||||||
|
<b>{site:wz wz="吉祥直播" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://piga350.xyz" alt="20" target="_blank">
|
||||||
|
<b>{site:wz wz="高端外围" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://yqc.cbfxx.com/2196.html" alt="21" target="_blank">
|
||||||
|
<b>{site:wz wz="伊人直播" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://piga350.xyz" alt="22" target="_blank">
|
||||||
|
<b>{site:wz wz="同城可约" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://9io7vh.xyz:7899/index/17c05.html?channelCode=caox5" alt="23"
|
||||||
|
target="_blank">
|
||||||
|
<b>{site:wz wz="直播大秀" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://8033215.cc:8443?shareName=8033191.cc" alt="24" target="_blank">
|
||||||
|
<b>{site:wz wz="赚钱棋牌" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://8033215.cc:8443?shareName=8033191.cc" alt="25" target="_blank">
|
||||||
|
<b>{site:wz wz="送888元" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://8033215.cc:8443?shareName=8033191.cc" alt="26" target="_blank">
|
||||||
|
<b>{site:wz wz="捕鱼达人" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://2443385.cc:8443/?shareName=2443359.cc" alt="27" target="_blank">
|
||||||
|
<b>{site:wz wz="澳门新葡京" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
<dt>
|
||||||
|
<div class="item">
|
||||||
|
<a href="https://2443385.cc:8443/?shareName=2443359.cc" alt="28" target="_blank">
|
||||||
|
<b>{site:wz wz="提款秒到" /}</b>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</dt>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
327
code/app/home/view/videoDadi/public/main-nav.html
Normal file
@@ -0,0 +1,327 @@
|
|||||||
|
<div class="m0auto _402ed1c343 _4665ae3ec5">
|
||||||
|
<div>
|
||||||
|
<!--<div class="df3e856de9 _7de9cc4234 ">
|
||||||
|
<div class="swiper swiper-initialized swiper-horizontal swiper-backface-hidden">
|
||||||
|
<div class="swiper-wrapper" style="transform: translate3d(-2200px, 0px, 0px); transition-duration: 0ms;">
|
||||||
|
<div class="swiper-slide swiper-slide-next" data-swiper-slide-index="0" style="width: 1100px;"><img sizes="100vh" class="point fill undefined" height="0" width="0" alt="" src="https://999bbb333www.com/9da35dfc5950448bb840597eb468456c.gif" style="width: 100%; height: 100%; object-fit: cover;"></div>
|
||||||
|
<div class="swiper-slide swiper-slide-prev" data-swiper-slide-index="1" style="width: 1100px;"><img sizes="100vh" class="point fill undefined" height="0" width="0" alt="" src="https://ccccc98kkkkk.com/0d65a4cbabe3485483896c763a1b5ab5.gif" style="width: 100%; height: 100%; object-fit: cover;"></div>
|
||||||
|
<div class="swiper-slide swiper-slide-active" data-swiper-slide-index="2" style="width: 1100px;"><img sizes="100vh" class="point fill undefined" height="0" width="0" alt="" src="https://xxxx96xxxx.com/e42ccb88eeaa4a3cac8a1c01647aa574.gif" style="width: 100%; height: 100%; object-fit: cover;"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>-->
|
||||||
|
<div class="grid e962202ca2 a41ff2c04f _1d256f42d6">
|
||||||
|
<div>
|
||||||
|
<div class="point grid _41b11fed36 d2dcae790c _1b5cb7f9b1 a3adb35c9a false">
|
||||||
|
<div>
|
||||||
|
<div class="a8852cf41c a7064da731 _97689f33dd _12a326b4ab"><img sizes="100vh" class="point fill undefined" height="31" width="40" alt="" src="/assets/images/menu/home_icon_tesezhuanqu.png">
|
||||||
|
<div>{site:wz wz="VIP 专区" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="a4c7151095 b0e2488b4d _569ba161f5 _98be5ed345 text_center">{site:wz wz="VIP 专区" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="fl align_center">
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="猫咪推荐" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="原创国产" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="制服淫穴" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="换脸AI区" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="三级综艺" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="次元动漫" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="欧美大片" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="同性恋区" /}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="point grid _41b11fed36 d2dcae790c _1b5cb7f9b1 bd0f7c5f0f false">
|
||||||
|
<div>
|
||||||
|
<div class="a8852cf41c a7064da731 _97689f33dd _12a326b4ab"><img sizes="100vh" class="point fill undefined" height="31" width="40" alt="" src="/assets/images/menu/home_icon_Movie.png">
|
||||||
|
<div>{site:wz wz="VIP 专区2" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="a4c7151095 b0e2488b4d _569ba161f5 _98be5ed345 text_center">{site:wz wz="VIP 专区2" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="fl align_center">
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="新片速递" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="独家精选" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="国产传媒" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="精品高清" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="著名厂商" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="探花大神" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="私拍泄密" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="AV解说" /}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="point grid _41b11fed36 d2dcae790c _1b5cb7f9b1 a3adb35c9a false">
|
||||||
|
<div>
|
||||||
|
<div class="a8852cf41c a7064da731 _97689f33dd _12a326b4ab"><img sizes="100vh" class="point fill undefined" height="31" width="40" alt="" src="/assets/images/menu/home_icon_Movie2.png">
|
||||||
|
<div>{site:wz wz="站站推荐" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="a4c7151095 b0e2488b4d _569ba161f5 _98be5ed345 text_center">{site:wz wz="站站推荐" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="fl align_center">
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="反差少女" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="绳艺调教" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="觅圈正妹" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="裸播大秀" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="主播艳舞" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="私人订制" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="黑丝玉足" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="吃瓜黑料" /}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="point grid _41b11fed36 d2dcae790c _1b5cb7f9b1 bd0f7c5f0f false">
|
||||||
|
<div>
|
||||||
|
<div class="a8852cf41c a7064da731 _97689f33dd _12a326b4ab"><img sizes="100vh" class="point fill undefined" height="31" width="40" alt="" src="/assets/images/menu/home_icon_Movie3.png">
|
||||||
|
<div>{site:wz wz="另类色情" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="a4c7151095 b0e2488b4d _569ba161f5 _98be5ed345 text_center">{site:wz wz="另类色情" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="fl align_center">
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="VR色情" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="巨乳嫩穴" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="男同拉拉" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="御宅伪娘" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="泄密外流" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="知名网黄" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="黑鬼淫妻" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="禁漫里番" /}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="point grid _41b11fed36 d2dcae790c _1b5cb7f9b1 a3adb35c9a false">
|
||||||
|
<div>
|
||||||
|
<div class="a8852cf41c a7064da731 _97689f33dd _12a326b4ab"><img sizes="100vh" class="point fill undefined" height="31" width="40" alt="" src="/assets/images/menu/home_icon_picture.png">
|
||||||
|
<div>{site:wz wz="在线电影" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="a4c7151095 b0e2488b4d _569ba161f5 _98be5ed345 text_center">{site:wz wz="在线电影" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="fl align_center">
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="短视频区" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="美女主播" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="国产精品" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="中文字幕" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="亚洲无码" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="欧美精品" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="精彩动漫" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="女优专区" /}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="point grid _41b11fed36 d2dcae790c _1b5cb7f9b1 bd0f7c5f0f false">
|
||||||
|
<div>
|
||||||
|
<div class="a8852cf41c a7064da731 _97689f33dd _12a326b4ab"><img sizes="100vh" class="point fill undefined" height="31" width="40" alt="" src="/assets/images/menu/home_icon_app.png">
|
||||||
|
<div>{site:wz wz="手机下载" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="a4c7151095 b0e2488b4d _569ba161f5 _98be5ed345 text_center">{site:wz wz="手机下载" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="fl align_center">
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="国产原创" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="岛国有码" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="岛国无码" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="西方美人" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="动漫精品" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="三级伦理" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="高清中文" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="素人系列" /}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="point grid _41b11fed36 d2dcae790c _1b5cb7f9b1 a3adb35c9a false">
|
||||||
|
<div>
|
||||||
|
<div class="a8852cf41c a7064da731 _97689f33dd _12a326b4ab"><img sizes="100vh" class="point fill undefined" height="31" width="40" alt="" src="/assets/images/menu/home_icon_Photograph.png">
|
||||||
|
<div>{site:wz wz="激情图区" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="a4c7151095 b0e2488b4d _569ba161f5 _98be5ed345 text_center">{site:wz wz="激情图区" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="fl align_center">
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="自拍偷拍" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="亚洲色图" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="欧美色图" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="美腿丝袜" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="清纯唯美" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="乱伦熟女" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="卡通动漫" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="极品美女" /}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="point grid _41b11fed36 d2dcae790c _1b5cb7f9b1 a3adb35c9a false">
|
||||||
|
<div>
|
||||||
|
<div class="a8852cf41c a7064da731 _97689f33dd _12a326b4ab"><img sizes="100vh" class="point fill undefined" height="31" width="40" alt="" src="/assets/images/menu/home_icon_xiaoshuopng.png">
|
||||||
|
<div>{site:wz wz="情色小说" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="a4c7151095 b0e2488b4d _569ba161f5 _98be5ed345 text_center">{site:wz wz="情色小说" /}</div>
|
||||||
|
</div>
|
||||||
|
<div class="fl align_center">
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="都市激情" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="人妻交换" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="校园春色" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="家庭乱伦" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="情色笑话" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="性爱技巧" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="武侠古典" /}</a>
|
||||||
|
</div>
|
||||||
|
<div class="fl1 point">
|
||||||
|
<a href="#" class="_8372f72a1e e19a28938c d05d5e2e44">{site:wz wz="另类小说" /}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div class="relative ">
|
||||||
|
<div class=""><img sizes="100vh" class="point fill undefined" height="388" width="174" alt="" src="/assets/images/user-center/info/vip-card-bg.png">
|
||||||
|
<div class="abs _46fd2dbb49">
|
||||||
|
<div class="_55531ab90f">21:30:10</div>
|
||||||
|
<div class="grid e2e74fbbf6">
|
||||||
|
<div><img sizes="100vh" class="point fill undefined" height="30" width="30" alt="" src="/assets/images/user-center/info/vip_wxgk.png">
|
||||||
|
<div>{site:wz wz="无限观看" /}</div>
|
||||||
|
</div>
|
||||||
|
<div><img sizes="100vh" class="point fill undefined" height="30" width="30" alt="" src="/assets/images/user-center/info/vip_gqxl.png">
|
||||||
|
<div>{site:wz wz="高清线路" /}</div>
|
||||||
|
</div>
|
||||||
|
<div><img sizes="100vh" class="point fill undefined" height="30" width="30" alt="" src="/assets/images/user-center/info/vip_zskf.png">
|
||||||
|
<div>{site:wz wz="专属客服" /}</div>
|
||||||
|
</div>
|
||||||
|
<div><img sizes="100vh" class="point fill undefined" height="30" width="30" alt="" src="/assets/images/user-center/info/vip_mygg.png">
|
||||||
|
<div>{site:wz wz="没有广告" /}</div>
|
||||||
|
</div>
|
||||||
|
<div><img sizes="100vh" class="point fill undefined" height="30" width="30" alt="" src="/assets/images/user-center/info/vip_srdz.png">
|
||||||
|
<div>{site:wz wz="私人定制" /}</div>
|
||||||
|
</div>
|
||||||
|
<div><img sizes="100vh" class="point fill undefined" height="30" width="30" alt="" src="/assets/images/user-center/info/vip_zq.png">
|
||||||
|
<div>{site:wz wz="VIP专区" /}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="abs _8488b2c654">
|
||||||
|
<div class="_3ea9e83251">{site:wz wz="点击获取" /}</div>
|
||||||
|
<div class="_8ba119218d">{site:wz wz="在线客服" /}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div class="_7d0cfe6508 _4d635fbb87">
|
||||||
|
<img sizes="100vh" class="point fill fill1 ebda15b285 c8873938dd" height="0" width="0" alt="" src="https://zbb.bbb.b8s2xsha552u.com/pgjsw-960x120.gif.js"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
18
code/app/home/view/videoDadi/public/page.html
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<div class="pagination-box">
|
||||||
|
<ul class="pagination justify-content-center">
|
||||||
|
<li class="page-item"><span class="page-link">{site:wz wz="上一页" /}</span></li>
|
||||||
|
<li class="page-item active"><span class="page-link">1</span></li>
|
||||||
|
<li class="page-item"><a class="page-link" href="/chigua/0.html?page=2">2</a></li>
|
||||||
|
<li class="page-item"><a class="page-link" href="/chigua/0.html?page=3">3</a></li>
|
||||||
|
<li class="page-item"><a class="page-link" href="/chigua/0.html?page=2">{site:wz wz="下一页" /}</a></li>
|
||||||
|
<li class="page-item">
|
||||||
|
<div class="last_page_p">1/87</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="jump-box">
|
||||||
|
<input type="number" name="page" class="page-link pagination-num"
|
||||||
|
:placeholder="{site:wz wz="跳转页" /}">
|
||||||
|
<button type="button" data-url="/chigua/0.html" data-max="87"
|
||||||
|
class="btn btn-primary btn-sm pagination-click">{site:wz wz="跳转" /}</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
18
code/app/home/view/videoDadi/public/seo-html-list.html
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
|
||||||
|
<li class="bottom-line-dot paihanban-ul-li">
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)});"
|
||||||
|
href="/like/{$vo.sh_id}.html"
|
||||||
|
title="{$vo.v_name}">
|
||||||
|
<span class="text-muted pull-right hidden-md">{$vo.create_time}</span>
|
||||||
|
{if $index == 1}
|
||||||
|
<span class="badge badge-first">{$index}</span>
|
||||||
|
{elseif $index == 2}
|
||||||
|
<span class="badge badge-second">{$index}</span>
|
||||||
|
{elseif $index == 3}
|
||||||
|
<span class="badge badge-third">{$index}</span>
|
||||||
|
{else/}
|
||||||
|
<span class="badge badge-other">{$index}</span>
|
||||||
|
{/if}
|
||||||
|
{$vo.sh_title}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
18
code/app/home/view/videoDadi/public/swiper.html
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<div
|
||||||
|
class="swiper swiper-top-zxcv swiper-initialized swiper-horizontal swiper-pointer-events swiper-ios swiper-backface-hidden">
|
||||||
|
<div class="swiper-wrapper">
|
||||||
|
<div class="swiper-slide">
|
||||||
|
<a href="https://piga350.xyz" target="_blank">
|
||||||
|
<img src="/assets/test/ad-swiper.jpg" style="display: block;width:100%" alt="">
|
||||||
|
<!-- <div class="content">2024-06-25 05:34:59</div> -->
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="swiper-slide">
|
||||||
|
<a href="https://piga350.xyz" target="_blank">
|
||||||
|
<img src="/assets/test/ad-swiper.jpg" style="display: block;width:100%" alt="">
|
||||||
|
<!-- <div class="content">2024-06-25 05:34:59</div> -->
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="swiper-pagination"></div>
|
||||||
|
</div>
|
||||||
13
code/app/home/view/videoDadi/public/tongji.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<script>
|
||||||
|
!function(p){"use strict";!function(t){var s=window,e=document,i=p,c="".concat("https:"===e.location.protocol?"https://":"http://","sdk.51.la/js-sdk-pro.min.js"),n=e.createElement("script"),r=e.getElementsByTagName("script")[0];n.type="text/javascript",n.setAttribute("charset","UTF-8"),n.async=!0,n.src=c,n.id="LA_COLLECT",i.d=n;var o=function(){s.LA.ids.push(i)};s.LA?s.LA.ids&&o():(s.LA=p,s.LA.ids=[],o()),r.parentNode.insertBefore(n,r)}()}({id:"3H7PDWYu0JyBMCp9",ck:"3H7PDWYu0JyBMCp9"});
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
var _hmt = _hmt || [];
|
||||||
|
(function() {
|
||||||
|
var hm = document.createElement("script");
|
||||||
|
hm.src = "https://hm.baidu.com/hm.js?ab955e9f682289c4e867913d5018c3bd";
|
||||||
|
var s = document.getElementsByTagName("script")[0];
|
||||||
|
s.parentNode.insertBefore(hm, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<div class="vs_dc3b5d1a3f59ee19cb5e6a4dbe162e0f-item-vide-n">
|
||||||
|
<a alt="31" class="js-17c" href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">
|
||||||
|
<div class="rank-17c">
|
||||||
|
<img class="pre-img lozad" loading="lazy" src="/assets/images/loading_img_bg_default.jpg?v={site:cfg code='STATIC_FILE_VERSION' encode='false'/}"
|
||||||
|
data-src="{$ad.gg_tu_pian}">
|
||||||
|
</div>
|
||||||
|
<p class="rank-title">{$ad.gg_wen_zi|customEntities|raw}</p>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
18
code/app/home/view/videoDadi/public/video-list-phb.html
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
|
||||||
|
<li class="bottom-line-dot paihanban-ul-li">
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)});"
|
||||||
|
href=""
|
||||||
|
title="{$Video.v_name}">
|
||||||
|
<span class="text-muted pull-right hidden-md">100</span>
|
||||||
|
{if $key == 1}
|
||||||
|
<span class="badge badge-first">{$key}</span>
|
||||||
|
{elseif $key == 2}
|
||||||
|
<span class="badge badge-second">{$key}</span>
|
||||||
|
{elseif $key == 3}
|
||||||
|
<span class="badge badge-third">{$key}</span>
|
||||||
|
{else/}
|
||||||
|
<span class="badge badge-other">{$key}</span>
|
||||||
|
{/if}
|
||||||
|
{$Video.v_name}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
18
code/app/home/view/videoDadi/public/video-list-phb2.html
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
|
||||||
|
<li class="bottom-line-dot paihanban-ul-li">
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)});"
|
||||||
|
href=""
|
||||||
|
title="{$Video.v_name}">
|
||||||
|
<span class="text-muted pull-right hidden-md">{$Video.v_hits ?? 0}</span>
|
||||||
|
{if $key == 1}
|
||||||
|
<span class="badge badge-first">{$key}</span>
|
||||||
|
{elseif $key == 2}
|
||||||
|
<span class="badge badge-second">{$key}</span>
|
||||||
|
{elseif $key == 3}
|
||||||
|
<span class="badge badge-third">{$key}</span>
|
||||||
|
{else/}
|
||||||
|
<span class="badge badge-other">{$key}</span>
|
||||||
|
{/if}
|
||||||
|
{$Video.v_name}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<li class="col-md-4 col-sm-3 col-xs-1 padding-0">
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)})" class="top-line-dot text-overflow"
|
||||||
|
href=""
|
||||||
|
title="{$Video.v_name}">
|
||||||
|
<span class="text-muted pull-right">{$Video.v_letter}</span>
|
||||||
|
{$Video.v_name}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<li>
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)})"
|
||||||
|
href=""
|
||||||
|
class="text-muted">
|
||||||
|
{$Video.v_name}
|
||||||
|
</a>
|
||||||
|
<span class="split-line"></span>
|
||||||
|
</li>
|
||||||
20
code/app/home/view/videoDadi/public/video-list-shu.html
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<li class="col-md-6 col-sm-4 col-xs-3">
|
||||||
|
<div class="stui-vodlist__box">
|
||||||
|
<a style="color: rgb(233, 93, 80); background-image: url("/statics/img/load.gif");"
|
||||||
|
class="stui-vodlist__thumb lazyload" href=""
|
||||||
|
title="{$Video.v_name}"
|
||||||
|
data-src="{$Video.v_pic}">
|
||||||
|
<span class="play hidden-xs"></span>
|
||||||
|
<span class="pic-text text-right"></span>
|
||||||
|
</a>
|
||||||
|
<div class="stui-vodlist__detail">
|
||||||
|
<h4 class="title text-overflow">
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)})"
|
||||||
|
href="" title="{$Video.v_name}">{$Video.v_name}</a>
|
||||||
|
</h4>
|
||||||
|
<p class="text text-overflow text-muted hidden-xs">
|
||||||
|
{$Video.v_description}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
7
code/app/home/view/videoDadi/public/video-list-text.html
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<li class="col-md-4 col-sm-3 col-xs-1 padding-0">
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)});" class="top-line-dot text-overflow" href="/{$SiteModel['site_xiangqing_path']}/{$vo.v_pinyin}.html" title="{$vo.v_name}">
|
||||||
|
<span class="text-muted pull-right">{$vo.v_jiaobiao}</span>
|
||||||
|
{$vo.v_name}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{$strGanRaoMa|raw}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<li class="col-md-4 col-sm-3 col-xs-1 padding-0">
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)})" class="top-line-dot text-overflow"
|
||||||
|
href="/{$vo.v_pinyin}.html"
|
||||||
|
title="{$vo.v_name}"><span class="text-muted pull-right">{$vo.v_jiaobiao}</span>{$vo.v_name}</a>
|
||||||
|
</li>
|
||||||
52
code/app/home/view/videoDadi/public/video-panel.html
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
<div class="stui-pannel stui-pannel-bg clearfix">
|
||||||
|
<div class="stui-pannel-box clearfix">
|
||||||
|
<div class="stui-pannel_bd clearfix">
|
||||||
|
<!-- 左侧内容 -->
|
||||||
|
<div class="col-lg-wide-75 col-xs-1 padding-0">
|
||||||
|
<div class="stui-pannel_hd">
|
||||||
|
<div class="stui-pannel__head active bottom-line clearfix">
|
||||||
|
<a style="color: rgb(255, 0, 0);" class="more text-muted pull-right"
|
||||||
|
href="">更多<i
|
||||||
|
class="icon iconfont icon-more"></i></a>
|
||||||
|
<h3 class="title">
|
||||||
|
<img src="/template/videodadi/icon/icon_{$val.v_category_en}.png">
|
||||||
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)});"
|
||||||
|
href="">最新{$val.v_category}</a>
|
||||||
|
</h3>
|
||||||
|
<ul class="nav nav-text pull-right hidden-sm hidden-xs">
|
||||||
|
{video:list count="3" v_category="$val.v_category_en" sort_type="tuijian" d_key="key" d_val="Video" cache_life="86400"}
|
||||||
|
{include file="public/video-list-shu-top-text" /}
|
||||||
|
{/video:list}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="stui-vodlist clearfix">
|
||||||
|
{video:list count="12" v_category="$val.v_category_en" sort_type="news" d_key="key" d_val="Video" cache_life="86400"}
|
||||||
|
{include file="public/video-list-shu" /}
|
||||||
|
{/video:list}
|
||||||
|
</ul>
|
||||||
|
<ul class="stui-vodlist__text col-pd clearfix hidden-xs">
|
||||||
|
{video:list count="12" v_category="$val.v_category_en" sort_type="news" d_key="key" d_val="Video" cache_life="86400"}
|
||||||
|
{include file="public/video-list-shu-end-text" /}
|
||||||
|
{/video:list}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- 右侧排行榜 -->
|
||||||
|
<div class="col-lg-wide-25 hidden-md hidden-sm hidden-xs">
|
||||||
|
<div class="stui-pannel_hd">
|
||||||
|
<div class="stui-pannel__head active bottom-line clearfix">
|
||||||
|
<h3 class="title"><img src="/template/videodadi/icon/icon_12.png"><a
|
||||||
|
style="color: rgb(152, 139, 75);"
|
||||||
|
href="">{$val.v_category}周榜单</a>
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="stui-vodlist__text active col-pd clearfix">
|
||||||
|
{video:ranklist count="10" v_category="$val.v_category_en" sort_type="weekly" d_key="key" d_val="Video" cache_life="86400"}
|
||||||
|
{include file="public/video-list-phb" /}
|
||||||
|
{/video:ranklist}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
294
code/app/home/view/videoDadi/sitemap/index.md
Normal file
@@ -0,0 +1,294 @@
|
|||||||
|
对于一个小说站点(如你提到的包含首页、分类列表、排行榜、男生/女生频道、详情页面、章节页面、目录页面等),配置 Sitemap 时需要根据页面类型的重要性和 SEO 目标选择性地包含 URL,并合理组织以优化搜索引擎抓取和索引。以下是针对小说站点特点的 Sitemap 配置建议,包括哪些页面应该包含、如何处理大量 URL,以及相关的最佳实践。
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 一、小说站点页面类型分析
|
||||||
|
根据你提供的信息,小说站点的页面类型可以分为以下几类,每类页面的 SEO 价值和是否需要包含在 Sitemap 中有所不同:
|
||||||
|
|
||||||
|
| 页面类型 | 描述 | SEO 价值 | 是否包含在 Sitemap |
|
||||||
|
|------------------|----------------------------------------------------------------------|---------------------------------------|--------------------|
|
||||||
|
| **首页** | 网站主入口,通常包含推荐小说、导航等。 | 高(核心流量入口) | 是 |
|
||||||
|
| **分类列表** | 按题材、类型(如玄幻、言情)展示小说列表,可能有多页(如 `page=2`)。| 高(引导用户到具体小说) | 是(仅包含主页面) |
|
||||||
|
| **排行榜** | 热门小说排行,可能按日、周、月或类型(如男生/女生)排序。 | 中到高(吸引点击,动态更新) | 是(视情况精选) |
|
||||||
|
| **男生/女生频道**| 针对不同用户群的分类页面(如男生玄幻、女生穿越)。 | 高(细分用户需求) | 是 |
|
||||||
|
| **详情页面** | 小说详情页,包含简介、封面、目录链接等。 | 高(核心转化页面) | 是 |
|
||||||
|
| **章节页面** | 小说具体章节内容,通常数量庞大。 | 中到低(内容分散,SEO 价值有限) | 视情况(可选) |
|
||||||
|
| **目录页面** | 小说章节列表,汇总所有章节链接。 | 中(便于用户导航,SEO 价值中等) | 是 |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 二、Sitemap 配置策略
|
||||||
|
#### 1. 哪些 URL 应该包含?
|
||||||
|
基于小说站点的特点,建议优先包含以下页面:
|
||||||
|
|
||||||
|
- **首页**:
|
||||||
|
- 包含站点的唯一首页 URL(如 `https://www.example.com/`)。
|
||||||
|
- 设置高优先级(如 `<priority>1.0</priority>`)和频繁更新(如 `<changefreq>daily</changefreq>`)。
|
||||||
|
|
||||||
|
- **分类列表(主页面)**:
|
||||||
|
- 包含每个分类的主页面(如 `https://www.example.com/category/xuanhuan`)。
|
||||||
|
- 排除分页 URL(如 `https://www.example.com/category/xuanhuan?page=2`),因为分页内容重复且 SEO 价值低。
|
||||||
|
- 示例:玄幻、言情、历史等分类页面。
|
||||||
|
|
||||||
|
- **男生/女生频道**:
|
||||||
|
- 包含频道主页(如 `https://www.example.com/male`、`https://www.example.com/female`)。
|
||||||
|
- 如果频道下有子分类(如男生玄幻、女生穿越),也应包含。
|
||||||
|
|
||||||
|
- **排行榜(精选)**:
|
||||||
|
- 包含主要排行榜页面(如 `https://www.example.com/rank/hot`、`https://www.example.com/rank/male`)。
|
||||||
|
- 如果排行榜页面频繁更新(如每日排行),可设置 `<changefreq>daily</changefreq>`。
|
||||||
|
- 排除次要或动态参数页面(如 `?sort=week`),避免重复内容。
|
||||||
|
|
||||||
|
- **详情页面**:
|
||||||
|
- 包含所有小说详情页面(如 `https://www.example.com/book/123`)。
|
||||||
|
- 这些页面是 SEO 的核心,吸引搜索流量(如用户搜索小说名)。
|
||||||
|
- 使用 `<lastmod>` 反映小说更新时间,提示搜索引擎重新抓取。
|
||||||
|
|
||||||
|
- **目录页面**:
|
||||||
|
- 包含每个小说的目录页面(如 `https://www.example.com/book/123/chapters`)。
|
||||||
|
- 目录页面便于用户导航,且可能被搜索引擎索引为长尾关键词(如“小说名 章节列表”)。
|
||||||
|
|
||||||
|
- **章节页面(可选)**:
|
||||||
|
- **不建议全部包含**:小说章节页面数量庞大(可能数十万到数百万),SEO 价值较低(用户很少通过搜索直接进入具体章节)。
|
||||||
|
- **可选策略**:
|
||||||
|
- 只包含最新章节(如最近 30 天的章节),吸引搜索引擎抓取更新内容。
|
||||||
|
- 只包含热门小说的前几章(如前 10 章),作为引流入口。
|
||||||
|
- 如果包含,设置较低优先级(如 `<priority>0.3</priority>`)。
|
||||||
|
|
||||||
|
#### 2. 哪些 URL 应该排除?
|
||||||
|
- **分页 URL**:如分类列表的 `?page=2`,重复内容无 SEO 价值。
|
||||||
|
- **动态参数 URL**:如 `?sort=latest` 或 `?utm_source=...`,应规范化到标准 URL。
|
||||||
|
- **不可索引页面**:
|
||||||
|
- 已设置 `<meta name="robots" content="noindex">` 的页面。
|
||||||
|
- 被 `robots.txt` 屏蔽的页面(如 `Disallow: /user/`)。
|
||||||
|
- **用户生成内容**:
|
||||||
|
- 如评论页、用户个人中心、搜索结果页(`?q=keyword`)。
|
||||||
|
- **临时页面**:
|
||||||
|
- 如促销活动页、测试页面。
|
||||||
|
- **错误页面**:如 404、500 页面。
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 三、处理大量 URL 的策略
|
||||||
|
小说站点通常有大量 URL(尤其是章节页面),可能超过 Sitemap 的限制(50,000 条 URL 或 50MB)。以下是应对方法:
|
||||||
|
|
||||||
|
#### 1. 使用 Sitemap 索引文件
|
||||||
|
- 将 URL 分组到多个子 Sitemap 文件(如 `sitemap-books.xml`、`sitemap-chapters.xml`),每文件不超过 50,000 条 URL。
|
||||||
|
- 创建一个 Sitemap 索引文件(如 `sitemap_index.xml`)引用所有子 Sitemap。
|
||||||
|
- 示例:
|
||||||
|
```xml
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
<sitemap>
|
||||||
|
<loc>https://www.example.com/sitemap-main.xml</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
</sitemap>
|
||||||
|
<sitemap>
|
||||||
|
<loc>https://www.example.com/sitemap-books.xml</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
</sitemap>
|
||||||
|
<sitemap>
|
||||||
|
<loc>https://www.example.com/sitemap-chapters.xml</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
</sitemap>
|
||||||
|
</sitemapindex>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 2. 分组策略
|
||||||
|
- **按页面类型分组**:
|
||||||
|
- `sitemap-main.xml`:首页、分类列表、排行榜、男生/女生频道。
|
||||||
|
- `sitemap-books.xml`:小说详情页面和目录页面。
|
||||||
|
- `sitemap-chapters.xml`:章节页面(如果包含)。
|
||||||
|
- **按更新频率分组**:
|
||||||
|
- 频繁更新的页面(如排行榜、最新章节)单独分组,设置 `<changefreq>daily</changefreq>`。
|
||||||
|
- **按小说分组**:
|
||||||
|
- 为每部小说生成单独的 Sitemap(如 `sitemap-book123.xml`),包含其详情页、目录页和部分章节页。
|
||||||
|
|
||||||
|
#### 3. 动态生成 Sitemap
|
||||||
|
- **脚本生成**:
|
||||||
|
- 使用 Python、PHP 等脚本从数据库查询 URL,生成 Sitemap 文件。
|
||||||
|
- 示例(Python,参考前文):
|
||||||
|
```python
|
||||||
|
from lxml import etree
|
||||||
|
import datetime
|
||||||
|
|
||||||
|
# 模拟数据库查询
|
||||||
|
urls = [
|
||||||
|
{'loc': 'https://www.example.com/', 'lastmod': '2025-04-21', 'changefreq': 'daily', 'priority': '1.0'},
|
||||||
|
{'loc': 'https://www.example.com/book/123', 'lastmod': '2025-04-21', 'changefreq': 'weekly', 'priority': '0.8'},
|
||||||
|
{'loc': 'https://www.example.com/book/123/chapters', 'lastmod': '2025-04-21', 'changefreq': 'weekly', 'priority': '0.6'},
|
||||||
|
]
|
||||||
|
|
||||||
|
urlset = etree.Element("urlset", xmlns="http://www.sitemaps.org/schemas/sitemap/0.9")
|
||||||
|
for url in urls:
|
||||||
|
url_element = etree.SubElement(urlset, "url")
|
||||||
|
loc = etree.SubElement(url_element, "loc")
|
||||||
|
loc.text = url['loc']
|
||||||
|
lastmod = etree.SubElement(url_element, "lastmod")
|
||||||
|
lastmod.text = url['lastmod']
|
||||||
|
changefreq = etree.SubElement(url_element, "changefreq")
|
||||||
|
changefreq.text = url['changefreq']
|
||||||
|
priority = etree.SubElement(url_element, "priority")
|
||||||
|
priority.text = url['priority']
|
||||||
|
|
||||||
|
tree = etree.ElementTree(urlset)
|
||||||
|
tree.write("sitemap-main.xml", pretty_print=True, xml_declaration=True, encoding="UTF-8")
|
||||||
|
```
|
||||||
|
|
||||||
|
- **定时任务**:
|
||||||
|
- 使用 cron 任务每天或每周生成 Sitemap,上传到根目录。
|
||||||
|
- 示例(Linux cron):
|
||||||
|
```bash
|
||||||
|
0 2 * * * python3 /path/to/generate_sitemap.py
|
||||||
|
```
|
||||||
|
|
||||||
|
- **触发式更新**:
|
||||||
|
- 在小说更新(如新章节发布)时,触发脚本更新相关 Sitemap。
|
||||||
|
|
||||||
|
#### 4. 伪静态 Sitemap
|
||||||
|
- 配置服务器将 `sitemap_index.xml` 等请求重定向到动态脚本,实时生成 XML 内容。
|
||||||
|
- 示例(Apache + PHP,参考前文):
|
||||||
|
```apache
|
||||||
|
RewriteEngine On
|
||||||
|
RewriteRule ^sitemap_index\.xml$ sitemap_index.php [L]
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 四、robots.txt 配置
|
||||||
|
在 `robots.txt` 中声明 Sitemap 索引文件,使用绝对路径:
|
||||||
|
```txt
|
||||||
|
User-agent: *
|
||||||
|
Disallow: /user/
|
||||||
|
Disallow: /search/
|
||||||
|
Sitemap: https://www.example.com/sitemap_index.xml
|
||||||
|
```
|
||||||
|
|
||||||
|
- 确保不通过 `Disallow` 屏蔽 Sitemap 文件。
|
||||||
|
- 如果 Sitemap 托管在 CDN(如 `https://cdn.example.com/sitemap_index.xml`),在 `robots.txt` 中使用 CDN 地址,并验证所有权。
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 五、SEO 优化建议
|
||||||
|
1. **优先级设置**:
|
||||||
|
- 首页:`<priority>1.0</priority>`
|
||||||
|
- 分类/频道/详情页:`<priority>0.8</priority>`
|
||||||
|
- 目录页:`<priority>0.6</priority>`
|
||||||
|
- 章节页(若包含):`<priority>0.3</priority>`
|
||||||
|
|
||||||
|
2. **更新频率**:
|
||||||
|
- 首页、排行榜:`<changefreq>daily</changefreq>`
|
||||||
|
- 分类/频道/详情/目录页:`<changefreq>weekly</changefreq>`
|
||||||
|
- 章节页:`<changefreq>monthly</changefreq>`(或 `never` 如果不频繁更新)
|
||||||
|
|
||||||
|
3. **规范化 URL**:
|
||||||
|
- 确保只包含规范 URL(如 `https://www.example.com/book/123` 而非 `http://example.com/book/123`)。
|
||||||
|
- 使用 `<link rel="canonical">` 或 Sitemap 统一规范版本。
|
||||||
|
|
||||||
|
4. **避免重复内容**:
|
||||||
|
- 排除带参数的 URL(如 `?sort=latest`)。
|
||||||
|
- 如果男生/女生频道与分类列表有重复内容,选择主要入口包含在 Sitemap 中。
|
||||||
|
|
||||||
|
5. **图片 Sitemap(可选)**:
|
||||||
|
- 为小说封面图片创建图片 Sitemap,优化图片搜索排名。
|
||||||
|
- 示例:
|
||||||
|
```xml
|
||||||
|
<url>
|
||||||
|
<loc>https://www.example.com/book/123</loc>
|
||||||
|
<image:image>
|
||||||
|
<image:loc>https://www.example.com/images/book123.jpg</image:loc>
|
||||||
|
<image:title>小说封面</image:title>
|
||||||
|
</image:image>
|
||||||
|
</url>
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 六、注意事项
|
||||||
|
1. **章节页面数量庞大**:
|
||||||
|
- 如果每部小说有数百章节,章节页面可能占主导。建议只包含最新或热门章节,或完全排除章节页面,依靠目录页面引导爬虫。
|
||||||
|
2. **抓取预算**:
|
||||||
|
- 小说站点 URL 数量多,需优化 Sitemap 避免浪费搜索引擎的抓取预算。
|
||||||
|
3. **动态更新**:
|
||||||
|
- 小说站点内容更新频繁(如新章节发布),建议动态生成 Sitemap 或频繁更新。
|
||||||
|
4. **验证 Sitemap**:
|
||||||
|
- 提交 `sitemap_index.xml` 到 Google Search Console、Bing Webmaster Tools,检查是否被正确解析。
|
||||||
|
- 使用 GSC 的“索引覆盖率”报告,确认重要页面(如详情页)是否被索引。
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 七、示例 Sitemap 配置
|
||||||
|
#### 索引文件(`sitemap_index.xml`)
|
||||||
|
```xml
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
<sitemap>
|
||||||
|
<loc>https://www.example.com/sitemap-main.xml</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
</sitemap>
|
||||||
|
<sitemap>
|
||||||
|
<loc>https://www.example.com/sitemap-books.xml</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
</sitemap>
|
||||||
|
</sitemapindex>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 主 Sitemap(`sitemap-main.xml`)
|
||||||
|
```xml
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
<url>
|
||||||
|
<loc>https://www.example.com/</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
<changefreq>daily</changefreq>
|
||||||
|
<priority>1.0</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://www.example.com/category/xuanhuan</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://www.example.com/male</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://www.example.com/rank/hot</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
<changefreq>daily</changefreq>
|
||||||
|
<priority>0.7</priority>
|
||||||
|
</url>
|
||||||
|
</urlset>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 小说 Sitemap(`sitemap-books.xml`)
|
||||||
|
```xml
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
<url>
|
||||||
|
<loc>https://www.example.com/book/123</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://www.example.com/book/123/chapters</loc>
|
||||||
|
<lastmod>2025-04-21</lastmod>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.6</priority>
|
||||||
|
</url>
|
||||||
|
</urlset>
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 八、结论
|
||||||
|
- **不需包含所有 URL**:小说站点应优先包含首页、分类列表、男生/女生频道、排行榜、详情页面和目录页面。章节页面可根据需要部分包含或完全排除。
|
||||||
|
- **精选策略**:重点包含 SEO 价值高的页面(如详情页),排除分页、动态参数、低价值页面。
|
||||||
|
- **大型站点处理**:使用 Sitemap 索引文件和子 Sitemap,按页面类型分组,动态生成以应对大量 URL。
|
||||||
|
- **SEO 优化**:设置合理的 `<priority>` 和 `<changefreq>`,定期更新 Sitemap,验证索引效果。
|
||||||
|
|
||||||
|
如果你需要针对小说站点的具体脚本(生成 Sitemap 或伪静态配置)、CMS 插件推荐,或其他细节(如图片 Sitemap、robots.txt 优化),请告诉我!
|
||||||
3
code/app/home/view/videoDadi/sitemap/robots.txt
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
User-agent: *
|
||||||
|
Disallow:
|
||||||
|
Sitemap: https://{$DomainModel->d_domain}/sitemap_index.xml
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
{novel:pagerexp page="$Request.get.page" limit="40000"
|
||||||
|
sort_type="news"
|
||||||
|
d_key="key"
|
||||||
|
d_val="Novel"
|
||||||
|
cache_life="86400" func="generateCategoryPager" export_name="resData" /}
|
||||||
|
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
<!-- // 根据分页查询,按顺序 每页 50000个小说 -->
|
||||||
|
|
||||||
|
{foreach $resData.data as $key=>$Novel}
|
||||||
|
<url>
|
||||||
|
<loc>https://www.{$DomainModel->d_domain}{site:nclurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" order="zheng" page="1"/}</loc>
|
||||||
|
<lastmod>{:date('Y-m-d')}</lastmod>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
{/foreach}
|
||||||
|
<!-- 最多 50,000 个 <url> 条目 -->
|
||||||
|
</urlset>
|
||||||
20
code/app/home/view/videoDadi/sitemap/sitemap-books.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{novel:pagerexp page="$Request.get.page" limit="40000"
|
||||||
|
sort_type="news"
|
||||||
|
d_key="key"
|
||||||
|
d_val="Novel"
|
||||||
|
cache_life="86400" func="generateCategoryPager" export_name="resData" /}
|
||||||
|
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
<!-- // 根据分页查询,按顺序 每页 50000个小说 -->
|
||||||
|
|
||||||
|
{foreach $resData.data as $key=>$Novel}
|
||||||
|
<url>
|
||||||
|
<loc>https://www.{$DomainModel->d_domain}{site:nurl n_id="$Novel->n_id" n_py="$Novel->n_name_pinyin"/}</loc>
|
||||||
|
<lastmod>{:date('Y-m-d')}</lastmod>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
{/foreach}
|
||||||
|
|
||||||
|
</urlset>
|
||||||
18
code/app/home/view/videoDadi/sitemap/sitemap-chapters.xml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{novel:pagerexp page="$Request.get.page" limit="40000"
|
||||||
|
sort_type="news"
|
||||||
|
d_key="key"
|
||||||
|
d_val="Novel"
|
||||||
|
cache_life="86400" func="generateCategoryPager" export_name="resData" /}
|
||||||
|
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
{foreach $resData.data as $key=>$Novel}
|
||||||
|
<url>
|
||||||
|
<loc>https://www.{$DomainModel->d_domain}{site:lcpurl n_id="$Novel.n_id" n_py="$Novel.n_name_pinyin" /}</loc>
|
||||||
|
<lastmod>{:date('Y-m-d')}</lastmod>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.6</priority>
|
||||||
|
</url>
|
||||||
|
{/foreach}
|
||||||
|
|
||||||
|
</urlset>
|
||||||
35
code/app/home/view/videoDadi/sitemap/sitemap-main.xml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
<url>
|
||||||
|
<loc>https://www.{$DomainModel->d_domain}/</loc>
|
||||||
|
<lastmod>{:date('Y-m-d')}</lastmod>
|
||||||
|
<changefreq>daily</changefreq>
|
||||||
|
<priority>1.0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://www.{$DomainModel->d_domain}{$strRankUrlTemp}</loc>
|
||||||
|
<lastmod>{:date('Y-m-d')}</lastmod>
|
||||||
|
<changefreq>daily</changefreq>
|
||||||
|
<priority>1.0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<!-- 分类 -->
|
||||||
|
{novel:category d_key="strCategoryPinyin" d_val="strCategoryName"}
|
||||||
|
<!-- 排序 -->
|
||||||
|
{novel:sort d_key="sort_key" d_val="strSortName"}
|
||||||
|
<!-- 状态 -->
|
||||||
|
{novel:status d_key="status_key" d_val="strStatusName"}
|
||||||
|
<url>
|
||||||
|
<loc>https://www.{$DomainModel->d_domain}{site:nflurl category="$strCategoryPinyin" order="$sort_key" status="$status_key" /}</loc>
|
||||||
|
<lastmod>{:date('Y-m-d')}</lastmod>
|
||||||
|
<changefreq>weekly</changefreq>
|
||||||
|
<priority>0.8</priority>
|
||||||
|
</url>
|
||||||
|
{/novel:status}
|
||||||
|
{/novel:sort}
|
||||||
|
{/novel:category}
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 注意 所有链接不要分页,有分页的取第一页即可 -->
|
||||||
|
</urlset>
|
||||||
39
code/app/home/view/videoDadi/sitemap/sitemap_index.xml
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
{novel:pagerexp page="1" limit="40000"
|
||||||
|
sort_type="news"
|
||||||
|
d_key="d_key"
|
||||||
|
d_val="Novel"
|
||||||
|
cache_life="86400" func="generateCategoryPager" export_name="resData" /}
|
||||||
|
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
|
<sitemap>
|
||||||
|
<loc>https://www.{$DomainModel->d_domain}/sitemap-main.xml</loc>
|
||||||
|
<lastmod>{:date('Y-m-d')}</lastmod>
|
||||||
|
</sitemap>
|
||||||
|
|
||||||
|
<!--小说总数量/50000 得出 sitemap-books 一共有多少个 -->
|
||||||
|
{for start="0" end="$resData.p_data.pages"}
|
||||||
|
<sitemap>
|
||||||
|
<loc>https://www.{$DomainModel->d_domain}/sitemap-books-{$i+1}.xml</loc>
|
||||||
|
<lastmod>{:date('Y-m-d')}</lastmod>
|
||||||
|
</sitemap>
|
||||||
|
{/for}
|
||||||
|
|
||||||
|
<!-- 小说总数量/50000 得出 sitemap-books-catalog一共有多少个,每个小说只取一个目录链接,分页不需要加入去 -->
|
||||||
|
{for start="0" end="$resData.p_data.pages"}
|
||||||
|
<sitemap>
|
||||||
|
<loc>https://www.{$DomainModel->d_domain}/sitemap-books-catalog-{$i+1}.xml</loc>
|
||||||
|
<lastmod>{:date('Y-m-d')}</lastmod>
|
||||||
|
</sitemap>
|
||||||
|
{/for}
|
||||||
|
|
||||||
|
<!-- 小说章节取最新章节 -->
|
||||||
|
{for start="0" end="$resData.p_data.pages"}
|
||||||
|
<sitemap>
|
||||||
|
<loc>https://www.{$DomainModel->d_domain}/sitemap-chapters-{$i+1}.xml</loc>
|
||||||
|
<lastmod>{:date('Y-m-d')}</lastmod>
|
||||||
|
</sitemap>
|
||||||
|
{/for}
|
||||||
|
|
||||||
|
|
||||||
|
</sitemapindex>
|
||||||
14
code/app/home/view/videoDadi/test/test01/faker.html
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{novel:info n_id="$DomainModel->n_id" n_key="arrNovel01" n_forge_id="1125940" /}
|
||||||
|
<title>{$arrNovel01.n_name} - 首页</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
{$arrNovel01.n_description}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
61
code/app/home/view/videoDadi/test/test01/index.html
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
<pre>
|
||||||
|
|
||||||
|
|
||||||
|
{video:ranklist count="10" sort_type="total" n_status="wanjie" d_key="d_key" d_val="video" cache_life="1000"}
|
||||||
|
<li>
|
||||||
|
{php}var_dump($video){/php}
|
||||||
|
章节名称: {$video.v_name}
|
||||||
|
章节序号: {$video.v_category}
|
||||||
|
</li>
|
||||||
|
{/video:ranklist}
|
||||||
|
|
||||||
|
|
||||||
|
<!-- {video:pager page="1" limit="10" d_key="d_key" d_val="video" cache_life="1000" button_num="3" v_category="动作片" v_status="wanjie" sort_type="update" p_val="page_data" func="generateVideoPager"}
|
||||||
|
<li>
|
||||||
|
Index: {$d_key}
|
||||||
|
章节名称: {$video.v_name}
|
||||||
|
章节序号: {$video.v_category}
|
||||||
|
</li>
|
||||||
|
{/video:pager}
|
||||||
|
{php}var_dump($page_data);{/php} -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
{video:list count="10" v_category="动作片" v_status="wanjie" sort_type="update" d_key="d_key" d_val="video" cache_life="1000" }
|
||||||
|
<li>
|
||||||
|
Index: {$d_key}
|
||||||
|
章节名称: {$video.v_name}
|
||||||
|
章节序号: {$video.v_category}
|
||||||
|
</li>
|
||||||
|
{/video:list} -->
|
||||||
|
|
||||||
|
<!-- {video:info v_id="12" v_key="aaa" /}
|
||||||
|
{php}print_r($aaa);{/php} -->
|
||||||
|
|
||||||
|
<!-- {video:ranksort d_key="key" d_val="val"}
|
||||||
|
<li>
|
||||||
|
键: {$key} - 值: {$val}
|
||||||
|
</li>
|
||||||
|
{/video:ranksort} -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
{video:status d_key="key" d_val="val"}
|
||||||
|
<li>
|
||||||
|
键: {$key} - 值: {$val}
|
||||||
|
</li>
|
||||||
|
{/video:status} -->
|
||||||
|
|
||||||
|
<!-- {video:sort d_key="key" d_val="val"}
|
||||||
|
<li>
|
||||||
|
键: {$key} - 值: {$val}
|
||||||
|
</li>
|
||||||
|
{/video:sort} -->
|
||||||
|
|
||||||
|
<!-- {video:category d_key="key" d_val="val"}
|
||||||
|
<li>
|
||||||
|
键: {$key} - 值: {$val}
|
||||||
|
</li>
|
||||||
|
{/video:category} -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</pre>
|
||||||
114
code/app/home/view/videoDadi/test/test01/index_bak.html
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
<!-- {site:getval func="strSiteName" /} -->
|
||||||
|
|
||||||
|
<!-- {site:helper func="initHomeTKD" /} -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- {site:forgelist count="3" d_key="d_key" d_val="novel" cache_life="1000"}
|
||||||
|
<li>
|
||||||
|
Index: {$d_key}
|
||||||
|
Title: {$novel.n_forge_title}
|
||||||
|
Author: {$novel.n_name_pinyin}
|
||||||
|
</li>
|
||||||
|
{/site:forgelist} -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- {novel:ranklist count="10" sort_type="total" n_status="wanjie" n_sex="man" d_key="d_key" d_val="novel" cache_life="1000"}
|
||||||
|
<li>
|
||||||
|
{php}var_dump($novel){/php}
|
||||||
|
Index: {$d_key}
|
||||||
|
Title: {$novel.n_name}
|
||||||
|
Author: {$novel.n_category}
|
||||||
|
</li>
|
||||||
|
{/novel:ranklist} -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- {novel:pagerexp page="1" limit="10" n_category="$Request.route.category" d_key="d_key" d_val="novel" p_val="page_data"
|
||||||
|
cache_life="1000" func="generateSearchPager" export_name="fadfads" /}
|
||||||
|
|
||||||
|
{php}var_dump($fadfads['p_data']);{/php} -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- {novel:pager page="1" limit="10" n_category="$Request.route.category" d_key="d_key" d_val="novel" p_val="page_data"
|
||||||
|
cache_life="1000" func="generateSearchPager"}
|
||||||
|
<li>
|
||||||
|
Index: {$d_key}
|
||||||
|
Title: {$novel.n_name}
|
||||||
|
Author: {$novel.n_category}
|
||||||
|
</li>
|
||||||
|
{/novel:pager}
|
||||||
|
|
||||||
|
{php}var_dump($page_data);{/php} -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- {site:grm page_code="fdasfadsf" diff="fadsfdsa" num="10" g_key="arrGrm" /}
|
||||||
|
{php}var_dump($arrGrm);{/php} -->
|
||||||
|
|
||||||
|
<!-- {chapter:info n_id="1" c_sort_num="200" c_page="0" c_key="arrChapter01" /}
|
||||||
|
{$arrChapter01.c_name} -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- {chapter:pager page="1" limit="10" n_id="$Request.get.n_id" d_key="d_key" d_val="chapter" cache_life="1000" button_num="3" sort_type="dao" p_val="page_data" func="generateChapterPager"}
|
||||||
|
<li>
|
||||||
|
Index: {$d_key}
|
||||||
|
章节名称: {$chapter.c_name}
|
||||||
|
章节序号: {$chapter.c_sort_num}
|
||||||
|
</li>
|
||||||
|
{/chapter:pager}
|
||||||
|
{php}var_dump($page_data);{/php} -->
|
||||||
|
|
||||||
|
<!-- {chapter:list count="10" n_id="$Request.get.n_id" d_key="d_key" d_val="chapter" cache_life="1000"}
|
||||||
|
<li>
|
||||||
|
Index: {$d_key}
|
||||||
|
章节名称: {$chapter.c_name}
|
||||||
|
章节序号: {$chapter.c_sort_num}
|
||||||
|
</li>
|
||||||
|
{/chapter:list} -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
{novel:category d_key="key" d_val="val"}
|
||||||
|
<li>
|
||||||
|
键: {$key} - 值: {$val}
|
||||||
|
</li>
|
||||||
|
{/novel:category} -->
|
||||||
|
|
||||||
|
<!-- {novel:sex d_key="key" d_val="val"}
|
||||||
|
<li>
|
||||||
|
键: {$key} - 值: {$val}
|
||||||
|
</li>
|
||||||
|
{/novel:sex} -->
|
||||||
|
<!--
|
||||||
|
{novel:status d_key="key" d_val="val"}
|
||||||
|
<li>
|
||||||
|
键: {$key} - 值: {$val}
|
||||||
|
</li>
|
||||||
|
{/novel:status} -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
{novel:sort d_key="key" d_val="val"}
|
||||||
|
<li>
|
||||||
|
键: {$key} - 值: {$val}
|
||||||
|
</li>
|
||||||
|
{/novel:sort} -->
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
{novel:info n_id="33" n_key="arrNovel01" n_forge_id="1125940" /}
|
||||||
|
{$arrNovel01.n_name} -->
|
||||||
|
|
||||||
|
<!-- {$DomainModel->d_domain} -->
|
||||||
|
|
||||||
|
<!-- {site:replace code="INDEX@INDEX@TITLE"}
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- {novel:list count="10" n_category="$Request.route.category" d_key="d_key" d_val="novel" p_val="page_data" cache_life="1000"}
|
||||||
|
<li>
|
||||||
|
Index: {$d_key}
|
||||||
|
Title: {$novel.n_name}
|
||||||
|
Author: {$novel.n_category}
|
||||||
|
</li>
|
||||||
|
{/novel:list} -->
|
||||||
|
|
||||||
40
code/app/home/view/videoDadi/user/getBookShelf.html
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
{extend name="baseH5" /}
|
||||||
|
{block name="title"}我的书架{/block}
|
||||||
|
{block name="keywords"}我的书架{/block}
|
||||||
|
{block name="description"}我的书架{/block}
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
|
||||||
|
|
||||||
|
{block name="body-class"}novel_so{/block}
|
||||||
|
|
||||||
|
{block name='head-name'}{$DomainModel->d_name}{/block}
|
||||||
|
{block name='head-href'}/{/block}
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h2 class="bookname">
|
||||||
|
<a href="/" style="color:#ffffff">{$DomainModel->d_name}</a>
|
||||||
|
</h2>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title"><span>我的书架</span></h3>
|
||||||
|
<div class="rec-focus" id="shujiaContainer">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
<script>
|
||||||
|
const strNovelUrlTemp = `{site:replace code="NOVEL_INFO_URL"}`;
|
||||||
|
const strNovelChapterUrlTemp = `{site:replace code="CONTENT_INFO_URL"}`;
|
||||||
|
const strSearchUrlTemp = `{site:replace code="SEARCH_INFO_URL"}`;
|
||||||
|
// 调用展示书架功能
|
||||||
|
displayShujia();
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
40
code/app/home/view/videoDadi/user/getHistory.html
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
{extend name="baseH5" /}
|
||||||
|
{block name="title"}我的阅读记录{/block}
|
||||||
|
{block name="keywords"}我的阅读记录{/block}
|
||||||
|
{block name="description"}我的阅读记录{/block}
|
||||||
|
|
||||||
|
{block name='nav-active-class'}home{/block}
|
||||||
|
|
||||||
|
{block name="body-class"}novel_so{/block}
|
||||||
|
|
||||||
|
{block name='head-name'}{$DomainModel->d_name}{/block}
|
||||||
|
{block name='head-href'}/{/block}
|
||||||
|
|
||||||
|
{block name="logo-html"}
|
||||||
|
<h2 class="bookname">
|
||||||
|
<a href="/" style="color:#ffffff">{$DomainModel->d_name}</a>
|
||||||
|
</h2>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="main"}
|
||||||
|
|
||||||
|
<div class="wrap-box">
|
||||||
|
<h3 class="wrap-title"><span>阅读记录</span></h3>
|
||||||
|
<div class="rec-focus" id="shujiaContainer">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block name="customize"}
|
||||||
|
<script>
|
||||||
|
const strNovelUrlTemp = `{site:replace code="NOVEL_INFO_URL"}`;
|
||||||
|
const strNovelChapterUrlTemp = `{site:replace code="CONTENT_INFO_URL"}`;
|
||||||
|
const strSearchUrlTemp = `{site:replace code="SEARCH_INFO_URL"}`;
|
||||||
|
// 调用展示书架功能
|
||||||
|
displayHistory();
|
||||||
|
</script>
|
||||||
|
{/block}
|
||||||
@@ -26,6 +26,196 @@ class VideoCategoryModel extends MongoModel
|
|||||||
return self::$VideoCategoryModel;
|
return self::$VideoCategoryModel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自定义 总分类
|
||||||
|
*/
|
||||||
|
static $arrCategoryTypeONE = [
|
||||||
|
[
|
||||||
|
"v_category" => "电影",
|
||||||
|
"v_category_en" => "dianying",
|
||||||
|
"children" => [
|
||||||
|
[
|
||||||
|
"v_category_en" => "dong-zuo-pian",
|
||||||
|
"v_category" => "动作片",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "xi-ju-pian",
|
||||||
|
"v_category" => "喜剧片",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "ai-qing-pian",
|
||||||
|
"v_category" => "爱情片",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "ke-huan-pian",
|
||||||
|
"v_category" => "科幻片",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "kong-bu-pian",
|
||||||
|
"v_category" => "恐怖片",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "ju-qing-pian",
|
||||||
|
"v_category" => "剧情片",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "zhan-zheng-pian",
|
||||||
|
"v_category" => "战争片",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "ji-lu-pian",
|
||||||
|
"v_category" => "记录片",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "dong-hua-pian",
|
||||||
|
"v_category" => "动画片",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "lun-li-pian",
|
||||||
|
"v_category" => "倫理片",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category" => "电视剧",
|
||||||
|
"v_category_en" => "dianshiju",
|
||||||
|
"children" => [
|
||||||
|
[
|
||||||
|
"v_category_en" => "guo-chan-ju",
|
||||||
|
"v_category" => "国产剧",
|
||||||
|
"children" => []
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "tai-wan-ju",
|
||||||
|
"v_category" => "台湾剧",
|
||||||
|
"children" => []
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "han-guo-ju",
|
||||||
|
"v_category" => "韩国剧",
|
||||||
|
"children" => []
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "ou-mei-ju",
|
||||||
|
"v_category" => "欧美剧",
|
||||||
|
"children" => []
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "xiang-gang-ju",
|
||||||
|
"v_category" => "香港剧",
|
||||||
|
"children" => []
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "tai-guo-ju",
|
||||||
|
"v_category" => "泰国剧",
|
||||||
|
"children" => []
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "ri-ben-ju",
|
||||||
|
"v_category" => "日本剧",
|
||||||
|
"children" => []
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "hai-wai-ju",
|
||||||
|
"v_category" => "海外剧",
|
||||||
|
"children" => []
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category" => "综艺",
|
||||||
|
"v_category_en" => "zonyi",
|
||||||
|
"children" => [
|
||||||
|
[
|
||||||
|
"v_category_en" => "da-lu-zong-yi",
|
||||||
|
"v_category" => "大陆综艺",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "gang-tai-zong-yi",
|
||||||
|
"v_category" => "港台综艺",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "ri-han-zong-yi",
|
||||||
|
"v_category" => "日韩综艺",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "ou-mei-zong-yi",
|
||||||
|
"v_category" => "欧美综艺",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category" => "动漫",
|
||||||
|
"v_category_en" => "donman",
|
||||||
|
"children" => [
|
||||||
|
[
|
||||||
|
"v_category_en" => "guo-chan-dong-man",
|
||||||
|
"v_category" => "国产动漫",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "ri-han-dong-man",
|
||||||
|
"v_category" => "日韩动漫",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "ou-mei-dong-man",
|
||||||
|
"v_category" => "欧美动漫",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "gang-tai-dong-man",
|
||||||
|
"v_category" => "港台动漫",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category_en" => "hai-wai-dong-man",
|
||||||
|
"v_category" => "海外动漫",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"v_category" => "短剧",
|
||||||
|
"v_category_en" => "duanju",
|
||||||
|
"children" => [
|
||||||
|
[
|
||||||
|
"v_category_en" => "duan-ju-da-quan",
|
||||||
|
"v_category" => "短剧大全",
|
||||||
|
"children" => [],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
]
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* get custom category
|
||||||
|
*
|
||||||
|
* @param string $strType
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
static public function getCustomCategory($strType = "ONE"): array
|
||||||
|
{
|
||||||
|
$strType = "arrCategoryType" . $strType;
|
||||||
|
|
||||||
|
return self::${$strType};
|
||||||
|
}
|
||||||
|
|
||||||
static $arrCategory = [
|
static $arrCategory = [
|
||||||
"da-lu-zong-yi" => "大陆综艺",
|
"da-lu-zong-yi" => "大陆综艺",
|
||||||
"ai-qing-pian" => "爱情片",
|
"ai-qing-pian" => "爱情片",
|
||||||
|
|||||||
@@ -84,4 +84,14 @@ class StaticConfig
|
|||||||
{
|
{
|
||||||
return VideoCategoryModel::$arrCategory;
|
return VideoCategoryModel::$arrCategory;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* getVideoCategoryTypeFilter
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
static function getVideoCategoryTypeFilter(string $strType): array
|
||||||
|
{
|
||||||
|
return VideoCategoryModel::getCustomCategory( $strType);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -391,6 +391,13 @@ class TemplateSeeder
|
|||||||
't_path' => '/app/home/view/xiongMao/',
|
't_path' => '/app/home/view/xiongMao/',
|
||||||
't_cfg_template' => $arrSubjectFomartGroupData,
|
't_cfg_template' => $arrSubjectFomartGroupData,
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
't_id' => 6,
|
||||||
|
't_default' => 0,
|
||||||
|
't_code' => 'videoDadi',
|
||||||
|
't_path' => '/app/home/view/videoDadi/',
|
||||||
|
't_cfg_template' => $arrSubjectFomartGroupData,
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ class Video extends TagLib
|
|||||||
'ranksort' => ['attr' => 'd_key,d_val'],
|
'ranksort' => ['attr' => 'd_key,d_val'],
|
||||||
'status' => ['attr' => 'd_key,d_val'],
|
'status' => ['attr' => 'd_key,d_val'],
|
||||||
'category' => ['attr' => 'd_key,d_val,v_sex'],
|
'category' => ['attr' => 'd_key,d_val,v_sex'],
|
||||||
|
'categorytype' => ['attr' => 'category_type,d_key,d_val,v_sex'],
|
||||||
|
|
||||||
'ranklist' => ['attr' => 'count,sort_type,v_status,v_sex,diff_key,cache_life,d_key,d_val', 'close' => 1],
|
'ranklist' => ['attr' => 'count,sort_type,v_status,v_sex,diff_key,cache_life,d_key,d_val', 'close' => 1],
|
||||||
];
|
];
|
||||||
@@ -124,7 +125,7 @@ EOT;
|
|||||||
$v_category = $this->customBuildVar($v_category);
|
$v_category = $this->customBuildVar($v_category);
|
||||||
$sort_type = $this->customBuildVar($sort_type);
|
$sort_type = $this->customBuildVar($sort_type);
|
||||||
$v_status = $this->customBuildVar($v_status);
|
$v_status = $this->customBuildVar($v_status);
|
||||||
|
|
||||||
$key = $this->customBuildVar($key);
|
$key = $this->customBuildVar($key);
|
||||||
$diff_key = $this->customBuildVar($diff_key);
|
$diff_key = $this->customBuildVar($diff_key);
|
||||||
$cache_life = $this->customBuildVar($cache_life);
|
$cache_life = $this->customBuildVar($cache_life);
|
||||||
@@ -376,6 +377,42 @@ EOT;
|
|||||||
$strParse .= <<<EOT
|
$strParse .= <<<EOT
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
EOT;
|
||||||
|
return $strParse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取状态筛选参数
|
||||||
|
*
|
||||||
|
* @param array $tag
|
||||||
|
* @param string $content
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function tagCategoryType($tag, $content)
|
||||||
|
{
|
||||||
|
|
||||||
|
$d_key = $tag['d_key'] ?? 'd_key';
|
||||||
|
$d_val = $tag['d_val'] ?? 'd_val';
|
||||||
|
|
||||||
|
$category_type = $tag['category_type'] ?? 'ONE';
|
||||||
|
|
||||||
|
$category_type = $this->customBuildVar($category_type);
|
||||||
|
|
||||||
|
$strParse = <<<EOT
|
||||||
|
<?php
|
||||||
|
\$arrCategoryType = \\app\\services\\StaticConfig::getVideoCategoryTypeFilter({$category_type});
|
||||||
|
|
||||||
|
if (!empty(\$arrCategoryType) && is_array(\$arrCategoryType)):
|
||||||
|
|
||||||
|
?>
|
||||||
|
EOT;
|
||||||
|
$strParse .= <<<EOT
|
||||||
|
<?php foreach (\$arrCategoryType as \${$d_key} => \${$d_val}): ?>
|
||||||
|
EOT;
|
||||||
|
$strParse .= $content;
|
||||||
|
$strParse .= <<<EOT
|
||||||
|
<?php endforeach; ?>
|
||||||
|
<?php endif; ?>
|
||||||
EOT;
|
EOT;
|
||||||
return $strParse;
|
return $strParse;
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
code/public/template/videodadi/backjs.rar
Normal file
78
code/public/template/videodadi/cctv/index.js
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
// setTimeout(function () {
|
||||||
|
// if (CctvTopHf && CctvTopHf.length > 0) {
|
||||||
|
|
||||||
|
// var CctvTopHfDom = document.querySelector('.cctv-hf-list-top .swiper-wrapper '); // 获取容器元素
|
||||||
|
|
||||||
|
// // 遍历数组并生成 HTML
|
||||||
|
// CctvTopHf.forEach(function (ad) {
|
||||||
|
// var html = `
|
||||||
|
// <div class="swiper-slide" style="max-height:10rem">
|
||||||
|
// <a href="${ad.href}" target="_blank">
|
||||||
|
// <img src="${ad.img}" style="display: block;width:100%;max-height:10rem" alt="">
|
||||||
|
// </a>
|
||||||
|
// </div>
|
||||||
|
// `;
|
||||||
|
// CctvTopHfDom.innerHTML += html; // 将 HTML 添加到容器中
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
// }, 1500)
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
function history() {
|
||||||
|
if ($("#stui_history").length) {
|
||||||
|
let historyData = localStorage.getItem("recente");
|
||||||
|
let list = "";
|
||||||
|
|
||||||
|
if (historyData) {
|
||||||
|
let json = JSON.parse(historyData);
|
||||||
|
console.log("本地存储数据:", json);
|
||||||
|
|
||||||
|
for (let i = 0; i < json.length; i++) {
|
||||||
|
list += `<li class='top-line'>
|
||||||
|
<a href='${json[i].vod_url}' title='${json[i].vod_name}'>
|
||||||
|
<span class='pull-right text-red'>${json[i].vod_part}</span>
|
||||||
|
${json[i].vod_name}
|
||||||
|
</a>
|
||||||
|
</li>`;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
list = "<p style='padding: 80px 0; text-align: center'>您还没有看过影片哦</p>";
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#stui_history").html(list);
|
||||||
|
|
||||||
|
// 清空历史记录
|
||||||
|
$(".historyclean").on("click", function () {
|
||||||
|
localStorage.removeItem("recente");
|
||||||
|
$("#stui_history").html("<p style='padding: 80px 0; text-align: center'>您还没有看过影片哦</p>");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 添加新历史记录
|
||||||
|
function addHistory(vod_name, vod_url, vod_part) {
|
||||||
|
let historyData = localStorage.getItem("recente");
|
||||||
|
let historyList = historyData ? JSON.parse(historyData) : [];
|
||||||
|
|
||||||
|
// 查找是否已有该视频
|
||||||
|
let index = historyList.findIndex(item => item.vod_name === vod_name);
|
||||||
|
|
||||||
|
if (index !== -1) {
|
||||||
|
// 如果已存在,更新集数
|
||||||
|
historyList[index].vod_part = vod_part;
|
||||||
|
historyList[index].vod_url = vod_url; // 可能最新观看的是其他来源
|
||||||
|
} else {
|
||||||
|
// 追加新记录(最多存 10 条)
|
||||||
|
if (historyList.length >= 10) {
|
||||||
|
historyList.shift(); // 移除最早的一条
|
||||||
|
}
|
||||||
|
historyList.push({ vod_name, vod_url, vod_part });
|
||||||
|
}
|
||||||
|
|
||||||
|
localStorage.setItem("recente", JSON.stringify(historyList));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
6
code/public/template/videodadi/cctv/json.js.back
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
var CctvTopHf = [
|
||||||
|
{
|
||||||
|
'img' :'/assets/images/zxtv/375-50.png',
|
||||||
|
'href' : 'https://baidu.com'
|
||||||
|
}
|
||||||
|
];
|
||||||
29
code/public/template/videodadi/css/index.css
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
@media (min-width:768px){
|
||||||
|
.cctv-hf-list-top{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#firendlink {
|
||||||
|
border: 1px solid #DDD;
|
||||||
|
line-height: 22px;
|
||||||
|
width: 100%;
|
||||||
|
margin: 10px auto;
|
||||||
|
padding: 9px 0 9px 9px;
|
||||||
|
}
|
||||||
|
#firendlink a {
|
||||||
|
color: #548161;
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0 9px 0 0;
|
||||||
|
}
|
||||||
|
.footer_cont{
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
.footer_cont p {
|
||||||
|
text-align: center;
|
||||||
|
color: #B2B2B2;
|
||||||
|
line-height: 20px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
4
code/public/template/videodadi/css/mytheme-font.css
Normal file
545
code/public/template/videodadi/css/stui_block.css
Normal file
@@ -0,0 +1,545 @@
|
|||||||
|
/*!
|
||||||
|
* v3.0 Copyright http://v.shoutu.cn
|
||||||
|
* email 726662013@qq.com
|
||||||
|
*/
|
||||||
|
|
||||||
|
@charset "utf-8";
|
||||||
|
|
||||||
|
/* all */
|
||||||
|
body, html{width:100%;}
|
||||||
|
body{ margin: 0; font-family:"Microsoft YaHei", "微软雅黑", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif; font-size:14px; line-height: 140%}
|
||||||
|
ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,tr,dl,dd,dt{margin:0;padding:0; font-weight:normal}
|
||||||
|
input,select{font-size:12px;vertical-align:middle; border:none;}
|
||||||
|
ul,li{list-style-type:none;}
|
||||||
|
img{border:0 none;}
|
||||||
|
p{margin:0 0 10px;}
|
||||||
|
|
||||||
|
/* container */
|
||||||
|
*{-webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box}
|
||||||
|
:after,:before{-webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box}
|
||||||
|
.container {position: relative; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto;}
|
||||||
|
.row{position: relative; margin-right: -15px; margin-left: -15px;}
|
||||||
|
.container:before,.container:after,.row:before,.row:after,.clearfix:before, .clearfix:after{ display: table; content: " "; clear: both;}
|
||||||
|
|
||||||
|
/* col */
|
||||||
|
.col-pd,.col-lg-1,.col-lg-10,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding:10px}.col-xs-1,.col-xs-10,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-wide-1,.col-xs-wide-10,.col-xs-wide-15,.col-xs-wide-2,.col-xs-wide-25,.col-xs-wide-3,.col-xs-wide-35,.col-xs-wide-4,.col-xs-wide-45,.col-xs-wide-5,.col-xs-wide-55,.col-xs-wide-6,.col-xs-wide-65,.col-xs-wide-7,.col-xs-wide-75,.col-xs-wide-8,.col-xs-wide-85,.col-xs-wide-9,.col-xs-wide-95{float:left}.col-xs-10{width:10%}.col-xs-9{width:11.1111111%}.col-xs-8{width:12.5%}.col-xs-7{width:14.2857143%}.col-xs-6{width:16.6666667%}.col-xs-5{width:20%}.col-xs-4{width:25%}.col-xs-3{width:33.3333333%}.col-xs-2{width:50%}.col-xs-1{width:100%}.col-xs-wide-10{width:10%}.col-xs-wide-9{width:90%}.col-xs-wide-8{width:80%}.col-xs-wide-7{width:70%}.col-xs-wide-6{width:60%}.col-xs-wide-5{width:50%}.col-xs-wide-4{width:40%}.col-xs-wide-3{width:30%}.col-xs-wide-2{width:20%}.col-xs-wide-15{width:15%}.col-xs-wide-95{width:95%}.col-xs-wide-85{width:85%}.col-xs-wide-75{width:75%}.col-xs-wide-65{width:65%}.col-xs-wide-55{width:55%}.col-xs-wide-45{width:45%}.col-xs-wide-35{width:35%}.col-xs-wide-25{width:25%}
|
||||||
|
|
||||||
|
@media (min-width: 768px){
|
||||||
|
.col-sm-1,.col-sm-10,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-wide-1,.col-sm-wide-10,.col-sm-wide-15,.col-sm-wide-2,.col-sm-wide-25,.col-sm-wide-3,.col-sm-wide-35,.col-sm-wide-4,.col-sm-wide-45,.col-sm-wide-5,.col-sm-wide-55,.col-sm-wide-6,.col-sm-wide-65,.col-sm-wide-7,.col-sm-wide-75,.col-sm-wide-8,.col-sm-wide-85,.col-sm-wide-9,.col-sm-wide-95{float:left}.col-sm-10{width:10%}.col-sm-9{width:11.1111111%}.col-sm-8{width:12.5%}.col-sm-7{width:14.2857143%}.col-sm-6{width:16.6666667%}.col-sm-5{width:20%}.col-sm-4{width:25%}.col-sm-3{width:33.3333333%}.col-sm-2{width:50%}.col-sm-1{width:100%}.col-sm-wide-10{width:10%}.col-sm-wide-9{width:90%}.col-sm-wide-8{width:80%}.col-sm-wide-7{width:70%}.col-sm-wide-6{width:60%}.col-sm-wide-5{width:50%}.col-sm-wide-4{width:40%}.col-sm-wide-3{width:30%}.col-sm-wide-2{width:20%}.col-sm-wide-15{width:15%}.col-sm-wide-95{width:95%}.col-sm-wide-85{width:85%}.col-sm-wide-75{width:75%}.col-sm-wide-65{width:65%}.col-sm-wide-55{width:55%}.col-sm-wide-45{width:45%}.col-sm-wide-35{width:35%}.col-sm-wide-25{width:25%}}
|
||||||
|
|
||||||
|
@media (min-width: 992px){
|
||||||
|
.col-md-1,.col-md-10,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-wide-1,.col-md-wide-10,.col-md-wide-15,.col-md-wide-2,.col-md-wide-25,.col-md-wide-3,.col-md-wide-35,.col-md-wide-4,.col-md-wide-45,.col-md-wide-5,.col-md-wide-55,.col-md-wide-6,.col-md-wide-65,.col-md-wide-7,.col-md-wide-75,.col-md-wide-8,.col-md-wide-85,.col-md-wide-9,.col-md-wide-95{float:left}.col-md-10{width:10%}.col-md-9{width:11.1111111%}.col-md-8{width:12.5%}.col-md-7{width:14.2857143%}.col-md-6{width:16.6666667%}.col-md-5{width:20%}.col-md-4{width:25%}.col-md-3{width:33.3333333%}.col-md-2{width:50%}.col-md-1{width:100%}.col-md-wide-10{width:10%}.col-md-wide-9{width:90%}.col-md-wide-8{width:80%}.col-md-wide-7{width:70%}.col-md-wide-6{width:60%}.col-md-wide-5{width:50%}.col-md-wide-4{width:40%}.col-md-wide-3{width:30%}.col-md-wide-2{width:20%}.col-md-wide-15{width:15%}.col-md-wide-95{width:95%}.col-md-wide-85{width:85%}.col-md-wide-75{width:75%}.col-md-wide-65{width:65%}.col-md-wide-55{width:55%}.col-md-wide-45{width:45%}.col-md-wide-35{width:35%}.col-md-wide-25{width:25%}}
|
||||||
|
|
||||||
|
@media (min-width: 1200px){
|
||||||
|
.col-lg-1,.col-lg-10,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-wide-1,.col-lg-wide-10,.col-lg-wide-15,.col-lg-wide-2,.col-lg-wide-25,.col-lg-wide-3,.col-lg-wide-35,.col-lg-wide-4,.col-lg-wide-45,.col-lg-wide-5,.col-lg-wide-55,.col-lg-wide-6,.col-lg-wide-65,.col-lg-wide-7,.col-lg-wide-75,.col-lg-wide-8,.col-lg-wide-85,.col-lg-wide-9,.col-lg-wide-95{float:left}.col-lg-10{width:10%}.col-lg-9{width:11.1111111%}.col-lg-8{width:12.5%}.col-lg-7{width:14.2857143%}.col-lg-6{width:16.6666667%}.col-lg-5{width:20%}.col-lg-4{width:25%}.col-lg-3{width:33.3333333%}.col-lg-2{width:50%}.col-lg-1{width:100%}.col-lg-wide-10{width:10%}.col-lg-wide-9{width:90%}.col-lg-wide-8{width:80%}.col-lg-wide-7{width:70%}.col-lg-wide-6{width:60%}.col-lg-wide-5{width:50%}.col-lg-wide-4{width:40%}.col-lg-wide-3{width:30%}.col-lg-wide-2{width:20%}.col-lg-wide-15{width:15%}.col-lg-wide-95{width:95%}.col-lg-wide-85{width:85%}.col-lg-wide-75{width:75%}.col-lg-wide-65{width:65%}.col-lg-wide-55{width:55%}.col-lg-wide-45{width:45%}.col-lg-wide-35{width:35%}.col-lg-wide-25{width:25%}}
|
||||||
|
|
||||||
|
@media (max-width: 767px){[class*=col-]{padding:5px}}
|
||||||
|
|
||||||
|
/* text */
|
||||||
|
h1{ font-size:22px; line-height: 28px;}
|
||||||
|
h2{ font-size:20px; line-height: 26px;}
|
||||||
|
h3{ font-size:18px; line-height: 24px;}
|
||||||
|
h4{ font-size:16px; line-height: 22px;}
|
||||||
|
h5{ font-size:14px; line-height: 20px;}
|
||||||
|
h6{ font-size:12px; line-height: 18px;}
|
||||||
|
h1,h2,h3,h4,h5,h6{ font-weight: 400; margin-top:10px; margin-bottom:10px}
|
||||||
|
a,button{ text-decoration:none; outline:none; -webkit-tap-highlight-color:rgba(0,0,0,0)}
|
||||||
|
button:hover{ cursor: pointer;}
|
||||||
|
a:focus,a:hover,a:active{ text-decoration:none;}
|
||||||
|
.icon{ font-size: 16px; vertical-align: -1px;}
|
||||||
|
.font-16{ font-size: 16px;}
|
||||||
|
.font-14{ font-size: 14px;}
|
||||||
|
.font-12{ font-size: 12px;}
|
||||||
|
.text-center{ text-align: center;}
|
||||||
|
.text-left{ text-align: left;}
|
||||||
|
.text-right{ text-align: right;}
|
||||||
|
.text-overflow{ width:100%; overflow:hidden; text-overflow:ellipsis; -o-text-overflow:ellipsis; white-space:nowrap;}
|
||||||
|
|
||||||
|
/* img */
|
||||||
|
img{border: 0; vertical-align:middle}
|
||||||
|
.img-circle{ border-radius: 50%;}
|
||||||
|
.img-rounded{ border-radius: 5px;}
|
||||||
|
.img-thumbnail{ padding: 5px; border-radius: 5px;}
|
||||||
|
.img-responsive{ max-width: 100%;}
|
||||||
|
|
||||||
|
/* form */
|
||||||
|
input,textarea{outline: medium none; outline: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
|
||||||
|
input.form-control,input.btn{ outline:0px; -webkit-appearance: none;}
|
||||||
|
input[type="checkbox"]{ vertical-align: -2px;}
|
||||||
|
.form-control{display:block; width:100%; height:30px; padding: 10px; font-size:12px; line-height: 25px; border-radius:4px; transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;}
|
||||||
|
textarea.form-control{ height: auto;}
|
||||||
|
.input-list{ margin-bottom: 20px;}
|
||||||
|
.input-list li{ padding: 10px 20px;}
|
||||||
|
.input-list li input.form-control{ height: 40px;}
|
||||||
|
|
||||||
|
/* line */
|
||||||
|
.split-line{display: inline-block; margin-left: 12px; margin-right: 12px; width: 1px; height: 14px; vertical-align: -2px;}
|
||||||
|
.top-line,.top-line-dot,.bottom-line,.bottom-line-dot{ position: relative;}
|
||||||
|
.top-line:before,.top-line-dot:before{content: " "; position: absolute; left: 0; top: 0; right: 0; width: 100%; height: 1px;}
|
||||||
|
.bottom-line:after,.bottom-line-dot:before{content: " "; position: absolute; left: 0; bottom: 0; right: 0; width: 100%; height: 1px;}
|
||||||
|
|
||||||
|
/* badge */
|
||||||
|
.badge{display: inline-block; margin-right: 10px; width: 18px; height: 18px; text-align: center; line-height: 18px; border-radius: 2px; font-size: 12px;}
|
||||||
|
.badge-radius{ border-radius: 50%;}
|
||||||
|
|
||||||
|
/* btn */
|
||||||
|
.btn{display: inline-block; padding: 6px 30px; font-size: 12px; border-radius: 4px;}
|
||||||
|
.btn .icon{ font-size: 12px;}
|
||||||
|
.btn-min{ padding: 4px 15px;}
|
||||||
|
.btn-lg{ padding: 12px 30px;}
|
||||||
|
.btn-block{ display: block; width: 100%; text-align: center;}
|
||||||
|
.btn.disabled{cursor: not-allowed;}
|
||||||
|
|
||||||
|
/* tag */
|
||||||
|
.tag{ padding-left: 10px;}
|
||||||
|
.tag li{ float: left;}
|
||||||
|
.tag-btn,.tag-type{ padding-top: 10px; padding-left: 10px;}
|
||||||
|
.tag-btn li ,.tag-type li{ padding:0 10px 10px 0;}
|
||||||
|
.tag-btn li a ,.tag-type li a{ display: block; padding:0 10px; height: 30px; line-height: 30px; text-align: center; font-size: 12px; border-radius: 2px;}
|
||||||
|
.tag-btn.active li a,.tag-type.active li a{ border-radius: 14px;}
|
||||||
|
.tag-text li{ padding-right: 10px; padding-bottom: 10px;}
|
||||||
|
|
||||||
|
/* nav */
|
||||||
|
.nav{ height: 30px;}
|
||||||
|
.nav > li{ float: left;}
|
||||||
|
.nav-head > li{ margin-top: 5px; margin-right: 30px;}
|
||||||
|
.nav-head > li > a{ padding-bottom: 12px; font-size: 16px;}
|
||||||
|
.nav-tabs > li{margin-left: 30px;}
|
||||||
|
.nav-tabs > li > a{display: inline-block; padding: 8px 0 10px;}
|
||||||
|
.nav-tag > li{ margin-left: 10px;}
|
||||||
|
.nav-tag > li > a{ display: inline-block; padding:0 10px; height: 25px; line-height: 23px; font-size: 12px; border-radius: 20px;}
|
||||||
|
.nav-text > li{line-height: 30px;}
|
||||||
|
.nav-text > li.active > a{ color: #f80;}
|
||||||
|
.nav-page{ margin-left: 10px;}
|
||||||
|
.nav-page > li{ margin-left: 5px;}
|
||||||
|
.nav-page > li > a{ display: inline-block; font-size: 12px; padding: 0 6px; height: 25px; line-height: 23px;}
|
||||||
|
.nav-page > li > a > .icon{ font-size: 12px;}
|
||||||
|
.nav-page > li:first-child{ margin-left: 0;}
|
||||||
|
.nav-page > li:first-child > a{ border-radius: 4px 0 0 4px;}
|
||||||
|
.nav-page > li:last-child > a{ border-radius: 0 4px 4px 0;}
|
||||||
|
|
||||||
|
/* pic-tag */
|
||||||
|
.pic-tag{ position: absolute; z-index: 99; padding:2px 5px; font-size: 12px; border-radius: 2px;}
|
||||||
|
.pic-tag-t{top: 5px; left: 5px;}
|
||||||
|
.pic-tag-l{bottom: 5px; left: 5px;}
|
||||||
|
.pic-tag-b{bottom: 5px; right: 5px;}
|
||||||
|
.pic-tag-r{top: 5px; right: 5px;}
|
||||||
|
.pic-tag-h{left: 0; top: 0; padding:2px 8px; border-radius: 0 0 8px 0;}
|
||||||
|
.pic-tag-lg{ padding: 4px 10px;}
|
||||||
|
.pic-text{display: block; width: 100%; position: absolute; bottom: 0; left: 0; padding:5px 10px; font-size: 12px; overflow:hidden; text-overflow:ellipsis; -o-text-overflow:ellipsis; white-space:nowrap;}
|
||||||
|
.pic-text-silde{ padding-bottom: 20px; font-size: 14px;}
|
||||||
|
.pic-text-lg{ padding: 8px 20px; font-size: 14px;}
|
||||||
|
.pic-title-t{display: block; width: 100%; position: absolute; top: 0; left: 0; padding:5px 10px 10px; font-size: 12px; word-break:break-all; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;}
|
||||||
|
.pic-title-b{display: block; width: 100%; position: absolute; bottom: 0; left: 0; padding:5px 10px; font-size: 12px; word-break:break-all; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;}
|
||||||
|
|
||||||
|
/* pannel */
|
||||||
|
.stui-pannel{position: relative; margin-bottom: 20px;}
|
||||||
|
.stui-pannel.stui-pannel-x{ margin: -10px -10px 10px;}
|
||||||
|
.stui-pannel-bg{border-radius: 2px;}
|
||||||
|
.stui-pannel-side{ padding: 0 0 0 20px;}
|
||||||
|
.stui-pannel-box{ padding: 10px;}
|
||||||
|
.stui-pannel-box.active{ padding: 0; margin: -10px;}
|
||||||
|
.stui-pannel_hd{ padding: 10px;}
|
||||||
|
.stui-pannel_ft{ margin-top: 10px; padding: 10px 10px 0; text-align: center;}
|
||||||
|
|
||||||
|
/* pannel-head */
|
||||||
|
.stui-pannel__head{ position: relative; height: 30px;}
|
||||||
|
.stui-pannel__head.active{height: 30px;}
|
||||||
|
.stui-pannel__head .title{float: left; margin:0; padding-right: 10px; line-height: 24px;}
|
||||||
|
.stui-pannel__head .title img{ display: inline-block; width: 24px; height: 24px; margin-right: 10px; vertical-align: -5px;}
|
||||||
|
.stui-pannel__head .more{ line-height: 30px;}
|
||||||
|
|
||||||
|
/* tabbar */
|
||||||
|
.stui_nav__taddar .item{ display: block; text-align: center;}
|
||||||
|
.stui_nav__taddar .item .icon{ display: block; text-align: center; font-size: 20px; line-height: 20px;}
|
||||||
|
.stui_nav__taddar .item .icon-img{display: inline-block; width: 24px; height: 24px;}
|
||||||
|
.stui_nav__taddar .item .title{ display: block; margin-top: 3px; font-size: 12px;;}
|
||||||
|
.stui_nav__taddar.fixed{ position: fixed; bottom: 0; width: 100%; padding: 5px 0 0;}
|
||||||
|
|
||||||
|
/* vod-list */
|
||||||
|
.stui-vodlist__thumb{display: block; position: relative; padding-top: 150%; background: url(../img/load.gif) no-repeat; background-position: 50% 50%; background-size: cover;}
|
||||||
|
.stui-vodlist__thumb.square{ padding-top: 100%; background: url(../img/load_f.gif) no-repeat; background-position: 50% 50%; background-size: cover;}
|
||||||
|
.stui-vodlist__thumb.active{ padding-top: 60%; background: url(../img/load_w.gif) no-repeat; background-position: 50% 50%; background-size: cover;}
|
||||||
|
.stui-vodlist__thumb.picture {background: none; overflow: hidden;}
|
||||||
|
.stui-vodlist__thumb.picture img{position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
|
||||||
|
.stui-vodlist__thumb .play{display: none; position: absolute; top: 0; z-index: 1; width: 100%; height: 100%; background: rgba(0,0,0,0.1) url(../img/play.png) center no-repeat;}
|
||||||
|
.stui-vodlist__thumb .play.active{ display: block;}
|
||||||
|
.stui-vodlist__thumb:hover .play{ display: block;}
|
||||||
|
.stui-vodlist__detail.active{ padding: 0 10px 10px;}
|
||||||
|
.stui-vodlist__detail .title{ font-size: 14px; margin-bottom: 0;}
|
||||||
|
.stui-vodlist__detail .title.active{ font-size: 16px; margin-bottom: 10px;}
|
||||||
|
.stui-vodlist__detail .text{ min-height: 19px; font-size: 12px; margin-bottom: 0; margin-top: 5px;}
|
||||||
|
.stui-vodlist__detail .text-title{ font-size: 14px; line-height: 18px; margin:11px 0 0; height: 36px; overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
|
||||||
|
|
||||||
|
/* text-list */
|
||||||
|
.stui-vodlist__text li a{ display: block; padding: 10px 15px 10px 0;}
|
||||||
|
.stui-vodlist__text.active li a{ padding: 10px 0 10px;}
|
||||||
|
.stui-vodlist__text.active li:first-child a{ padding-top: 0;}
|
||||||
|
.stui-vodlist__text.striped li{ padding: 10px 0 10px;}
|
||||||
|
.stui-vodlist__text.striped li a{ display: inline-block; padding: 0;}
|
||||||
|
.stui-vodlist__text.striped .striped-head{ padding: 10px; border-radius: 5px;}
|
||||||
|
.stui-vodlist__text.to-color li{ padding: 10px; border-radius: 5px;}
|
||||||
|
.stui-vodlist__text.to-color li a{ padding: 0;}
|
||||||
|
.stui-vodlist__text.downlist{ padding-top: 0;}
|
||||||
|
.stui-vodlist__text.downlist li{ padding: 10px 0;}
|
||||||
|
.stui-vodlist__text.downlist li .text{ line-height: 30px; overflow:hidden; text-overflow:ellipsis; -o-text-overflow:ellipsis; white-space:nowrap;}
|
||||||
|
.stui-vodlist__text.downlist li a{ display: inline-block; padding: 0;}
|
||||||
|
.stui-vodlist__text.downlist li a.btn{ padding: 4px 12px; margin-left: 10px;}
|
||||||
|
|
||||||
|
/* media-list */
|
||||||
|
.stui-vodlist__media li { padding: 10px 0 10px;}
|
||||||
|
.stui-vodlist__media.active li:first-child{ padding-top: 0;}
|
||||||
|
.stui-vodlist__media.active li:last-child{ padding-bottom: 0;}
|
||||||
|
.stui-vodlist__media li .thumb,.stui-vodlist__media .detail{display: table-cell; vertical-align: top;}
|
||||||
|
.stui-vodlist__media li .thumb .w-thumb{ width: 190px;}
|
||||||
|
.stui-vodlist__media li .thumb .v-thumb{ width: 120px;}
|
||||||
|
.stui-vodlist__media li .thumb .f-thumb{ width: 120px;}
|
||||||
|
.stui-vodlist__media li .thumb .m-thumb{ width: 65px;}
|
||||||
|
.stui-vodlist__media li .detail{ width: 100%; padding:0 20px 0;}
|
||||||
|
.stui-vodlist__media li .detail-side{ padding:0 10px 0;}
|
||||||
|
.stui-vodlist__media li .detail-left{ padding: 0 20px 0 0;}
|
||||||
|
.stui-vodlist__media li .detail .title{ margin: 10px 0 10px;}
|
||||||
|
|
||||||
|
/* screen-list */
|
||||||
|
.stui-vodlist__screen { padding:10px 0 5px;}
|
||||||
|
.stui-vodlist__screen:first-child{ padding-top: 0;}
|
||||||
|
.stui-vodlist__screen:last-child{ padding-bottom: 0;}
|
||||||
|
.stui-vodlist__screen li{ float: left; width: 25%; margin-bottom: 5px;}
|
||||||
|
|
||||||
|
/* rank-list */
|
||||||
|
.stui-vodlist__rank li{ margin-bottom: 10px;}
|
||||||
|
.stui-vodlist__rank li:last-child{ margin-bottom: 0;}
|
||||||
|
|
||||||
|
/* link-list */
|
||||||
|
.stui-link__text li{ float: left; margin-right: 15px; margin-bottom: 10px;}
|
||||||
|
.stui-link__pic li a{ display: block; padding:10px 20px; border-radius: 4px;}
|
||||||
|
.stui-link__pic li a img{ max-width: 100%;}
|
||||||
|
|
||||||
|
/* play-list */
|
||||||
|
.stui-content__playlist{ position: relative;}
|
||||||
|
.stui-content__playlist.overflow{ max-height: 300px; overflow-y: scroll;}
|
||||||
|
.stui-content__playlist li{float:left; margin-bottom:10px; margin-right:10px}
|
||||||
|
.stui-content__playlist li a{display:inline-block; padding:5px 20px;border-radius:5px}
|
||||||
|
.stui-content__playlist.full li{ float: none; width: 100%; margin-right: 0;}
|
||||||
|
.stui-content__playlist.column3 li{ width: 33.3333333%; padding: 0 5px; margin-right: 0;}
|
||||||
|
.stui-content__playlist.column6 li{ width: 16.6666667%; padding: 0 5px; margin-right: 0;}
|
||||||
|
.stui-content__playlist.column8 li{ width: 12.5%; padding: 0 5px; margin-right: 0;}
|
||||||
|
.stui-content__playlist.column8 li.more,.stui-content__playlist.column10 li.narrow{ width: 15%;}
|
||||||
|
.stui-content__playlist.column10 li{ width: 10%; padding: 0 5px; margin-right: 0;}
|
||||||
|
.stui-content__playlist.column10 li.more,.stui-content__playlist.column10 li.narrow{ width: 20%;}
|
||||||
|
.stui-content__playlist.column12 li{ width: 8.33333333%; padding: 0 5px; margin-right: 0;}
|
||||||
|
.stui-content__playlist.column12 li.more,.stui-content__playlist.column12 li.narrow{ width: 16.6666667%;}
|
||||||
|
.stui-content__playlist.column3,.stui-content__playlist.column6,.stui-content__playlist.column8,.stui-content__playlist.column10,.stui-content__playlist.column12{ margin: 0 -5px;}
|
||||||
|
.stui-content__playlist.column3 li a,.stui-content__playlist.column6 li a,.stui-content__playlist.column8 li a,.stui-content__playlist.column10 li a,.stui-content__playlist.column12 li a{ padding: 5px;}
|
||||||
|
.stui-content__playlist.full li a,.stui-content__playlist.column3 li a,.stui-content__playlist.column6 li a,.stui-content__playlist.column8 li a,.stui-content__playlist.column10 li a,.stui-content__playlist.column12 li a{ display: block; text-align: center;overflow:hidden; text-overflow:ellipsis; -o-text-overflow:ellipsis; white-space:nowrap;}
|
||||||
|
|
||||||
|
/* screen */
|
||||||
|
.stui-screen__list{position:relative;padding:10px 0 0;}
|
||||||
|
.stui-screen__list li{float:left;margin-right:10px;margin-bottom:10px}
|
||||||
|
.stui-screen__list li span{display:inline-block;padding:3px 0 3px}
|
||||||
|
.stui-screen__list li a{display:inline-block;padding:3px 10px;border-radius:2px}
|
||||||
|
.stui-screen__list.letter-list li{ margin: 0;}
|
||||||
|
.stui-screen__list.letter-list li:first-child{ margin-right: 10px;}
|
||||||
|
.stui-screen__list.letter-list li.active a{padding:3px 10px}
|
||||||
|
|
||||||
|
/* page */
|
||||||
|
.stui-page{margin-bottom:30px}.stui-page li{display:inline-block;margin-left:10px}
|
||||||
|
.stui-page li .num,.stui-page li a{display:inline-block;padding:5px 15px;border-radius:5px}
|
||||||
|
.stui-page-text{ padding:0 20px 20px;}
|
||||||
|
.stui-page-text a,.stui-page-text em,.stui-page-text span{font-style:normal;display:inline-block;margin:0;padding:6px 12px;border-radius:2px;cursor:pointer}
|
||||||
|
.stui-page-text .pagego{ padding: 6px; margin-right: 5px;border-radius: 5;}
|
||||||
|
.stui-page-text .pagebtn{ padding: 6px 12px; cursor: pointer;}
|
||||||
|
|
||||||
|
/* extra */
|
||||||
|
.stui-extra{position:fixed;right:50px;bottom:50px}
|
||||||
|
.stui-extra li{position:relative;padding:15px 10px 0}
|
||||||
|
.stui-extra li a,.stui-extra li span{display:block;width:50px;height:50px;line-height:50px;text-align:center;border-radius:4px;font-size:18px;cursor:pointer}
|
||||||
|
.stui-extra li a .icon,.stui-extra li span .icon{font-size:18px}
|
||||||
|
.stui-extra li a img{margin-top:15px;width:20px;height:20px}
|
||||||
|
.stui-extra li .sideslip{display:none;position:absolute;bottom:0;right:100%;width: 160px;}
|
||||||
|
.stui-extra li .sideslip:before{content:" ";width:10px;height:10px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-width:0 1px 1px 0;position:absolute;bottom:20px;right:-6px;border-style:solid}
|
||||||
|
.stui-extra li:hover .sideslip{display:block}
|
||||||
|
|
||||||
|
/* flickity */
|
||||||
|
.flickity-enabled{position:relative;}
|
||||||
|
.flickity-enabled:focus{outline:0}
|
||||||
|
.flickity-viewport{overflow:hidden;position:relative;height:100%}
|
||||||
|
.flickity-slider{position:absolute;width:100%;height:100%}
|
||||||
|
.flickity-viewport.is-pointer-down{cursor:-webkit-grabbing;cursor:grabbing}
|
||||||
|
.flickity-prev-next-button{position:absolute;top:50%;width:30px;height:60px;border:none; background-color: rgba(0,0,0,.6); cursor:pointer;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}
|
||||||
|
.flickity-prev-next-button.previous{left:10px;border-radius:0 10px 10px 0}
|
||||||
|
.flickity-prev-next-button.next{right:10px;border-radius:10px 0 0 10px}
|
||||||
|
.flickity-prev-next-button:disabled{opacity:0;cursor:auto}
|
||||||
|
.flickity-prev-next-button svg{position:absolute;left:20%;top:20%;width:60%;height:60%}
|
||||||
|
.flickity-prev-next-button .arrow{fill:#fff}
|
||||||
|
.flickity-prev-next-button.no-svg{color:#fff;font-size:18px}
|
||||||
|
.flickity-page-dots{position:absolute;width:100%;bottom:20px;left:0;padding:0;margin:0;list-style:none;text-align:center;line-height:1}
|
||||||
|
.flickity-page-dots .dot{display:inline-block;width:15px;height:3px;margin:0 5px;background:#f80;opacity:.25;cursor:pointer}
|
||||||
|
.flickity-page-dots .dot.is-selected{opacity:1}
|
||||||
|
.flickity-page{ padding-bottom: 15px; overflow: hidden;}
|
||||||
|
.flickity-page .flickity-page-dots{ bottom: 5px;}
|
||||||
|
|
||||||
|
/* carousel */
|
||||||
|
.carousel{ position: relative; width: 100%; height:100%; overflow: hidden; white-space: nowrap;}
|
||||||
|
.carousel [class^="col-"]{ float: none; display: inline-block;}
|
||||||
|
.carousel .list{ padding: 0; margin-right: 20px;}
|
||||||
|
.carousel .wide{ width: 100%; display: inline-block;}
|
||||||
|
.carousel_center{ padding-bottom: 20px;}
|
||||||
|
.carousel_center .list a{ position: relative;}
|
||||||
|
.carousel_center .list a:before{ content: ""; position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,.6);}
|
||||||
|
.carousel_center .list.is-selected a:before{ display: none;}
|
||||||
|
|
||||||
|
/* popup */
|
||||||
|
.popup{position: fixed; right: -100%; top: 0; z-index: 1001; width: 100%; height: 100%; overflow-y: scroll; -webkit-overflow-scrolling: touch; -webkit-transition:.5s; -o-transition:.5s; -moz-transition:.5s; -ms-transition:.5s; transition:.5s;}
|
||||||
|
.popup-visible{ right: 0;}
|
||||||
|
.popup-head { padding: 15px 10px; margin-bottom: 10px;}
|
||||||
|
.popup-head .title{ display: inline-block; margin: 0;}
|
||||||
|
.popup-head .icon{ font-size: 20px;}
|
||||||
|
|
||||||
|
/* embed */
|
||||||
|
.embed-responsive{position:relative;display:block;overflow:hidden;padding:0;height:0}
|
||||||
|
.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}
|
||||||
|
.embed-responsive-16by9{padding-bottom:56.25%}
|
||||||
|
.embed-responsive-4by3{padding-bottom:75%}
|
||||||
|
|
||||||
|
/* bootstrap.js */
|
||||||
|
.fade{opacity: 0;-webkit-transition: opacity .15s linear;-o-transition: opacity .15s linear;transition: opacity .15s linear;}
|
||||||
|
.fade.in{opacity: 1;}
|
||||||
|
.collapse{ display: none;}
|
||||||
|
.collapse.in{ display: block;}
|
||||||
|
.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}
|
||||||
|
.tab-content>.tab-pane,.carousel-inner>.item{ display: none;}
|
||||||
|
.tab-content>.tab-pane.active,.carousel-inner>.item.active{ display: block;}
|
||||||
|
.dropdown{ position: relative;}
|
||||||
|
.dropdown-menu{display: none; position:absolute; top:100%; left:-80%; z-index:1000; padding: 10px 0; border-radius: 2px;}
|
||||||
|
.dropdown-menu:before{ content:" "; width:10px; height:10px; -webkit-transform:rotate(-45deg); -ms-transform:rotate(-45deg); transform:rotate(-45deg); border-width:1px 1px 0 0; position: absolute; top:-6px; right: 20px; border-style: solid;}
|
||||||
|
.dropdown-menu>li>a{display: block; padding: 6px 20px; text-align: center;}
|
||||||
|
.open>.dropdown-menu {display: block;}
|
||||||
|
.carousel-side{ position: absolute; z-index: 99; top: 0; bottom: 0; display: block; width: 100px; height: 100%;}
|
||||||
|
.carousel-side .icon{ position: absolute; top: 50%; margin-top: -25px; display: block; width: 50px; height: 50px; text-align: center; font-size: 30px; line-height: 50px; background-color: rgba(0,0,0,0.6); color: #fff; border-radius: 50%;}
|
||||||
|
.carousel-side.left{ left: 0;}
|
||||||
|
.carousel-side.left .icon{ left: 30px;}
|
||||||
|
.carousel-side.right{ right: 0; }
|
||||||
|
.carousel-side.right .icon{ right: 30px;}
|
||||||
|
.carousel-bootom{ position: absolute; width: 100%; bottom: 20px; left: 0; text-align: center;}
|
||||||
|
.carousel-bootom li{ display: inline-block; margin: 0 5px; width:15px; height:3px; background: #f80; opacity:.25; cursor:pointer}
|
||||||
|
.carousel-bootom li.active{ opacity:1;}
|
||||||
|
|
||||||
|
/* modal */
|
||||||
|
.stui-modal{position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9999; display: none; overflow: hidden; -webkit-overflow-scrolling: touch; outline: 0;}
|
||||||
|
.stui-modal__dialog{position: relative; width: 350px; margin: 140px auto; }
|
||||||
|
.stui-modal__content{ position: relative; background-color: #fff; border-radius: 6px; outline: 0; box-shadow: 0 3px 9px rgba(0,0,0,.5);}
|
||||||
|
.modal-open{ overflow: hidden;}
|
||||||
|
.modal-backdrop{position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000;}
|
||||||
|
.modal-backdrop.fade{ opacity: 0;}
|
||||||
|
.modal-backdrop.fade.in{ opacity: .5;}
|
||||||
|
|
||||||
|
/* mobile-share */
|
||||||
|
.mobile-share{ position: fixed; z-index: 999; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; animation: fade-in; animation-duration: .5s; -webkit-animation:fade-in .5s;}
|
||||||
|
.share-weixin{ background: url(../img/share_weixin.png) rgba(0, 0, 0, .8) no-repeat; background-position: right top 10px; background-size: 80%;}
|
||||||
|
.share-other{ background: url(../img/share_other.png) rgba(0, 0, 0, .8) no-repeat; background-position: center bottom 10px; background-size: 80%;}
|
||||||
|
|
||||||
|
/* more */
|
||||||
|
.relative{ position: relative;}
|
||||||
|
.top-fixed-up{ margin-top: 0 !important;}
|
||||||
|
.top-fixed{ -webkit-transition:.5s; -o-transition:.5s; -moz-transition:.5s; -ms-transition:.5s; transition:.5s;}
|
||||||
|
.pull-left{ float: left !important;}
|
||||||
|
.pull-right{ float: right !important;}
|
||||||
|
.margin-0{ margin: 0 !important;}
|
||||||
|
.padding-0{ padding: 0 !important;}
|
||||||
|
.margin-t0{ margin: 0 !important;}
|
||||||
|
.padding-t0{ padding: 0 !important;}
|
||||||
|
.margin-b0{ margin: 0 !important;}
|
||||||
|
.padding-b0{ padding: 0 !important;}
|
||||||
|
.block{ display: block !important;}
|
||||||
|
.inline-block{ display: inline-block !important;}
|
||||||
|
.hide,.visible-lg, .visible-md, .visible-sm, .visible-xs, .visible-mi{ display: none !important;}
|
||||||
|
.mask{ position: fixed; top: 0; left: 0; bottom: 0; z-index: 999; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.2); animation: fade-in; animation-duration: .5s; -webkit-animation:fade-in .5s;}
|
||||||
|
@keyframes fade-in {0% {opacity: 0;}40% {opacity: 0;}100% {opacity: 1;}}
|
||||||
|
@-webkit-keyframes fade-in { 0% {opacity: 0;} 40% {opacity: 0;}100% {opacity: 1;}}
|
||||||
|
|
||||||
|
@media (min-width: 1200px){
|
||||||
|
.visible-lg { display: block !important;}
|
||||||
|
.hidden-lg {display: none !important;}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1199px) and (min-width: 992px){
|
||||||
|
.visible-md { display: block !important;}
|
||||||
|
.hidden-md {display: none!important;}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 991px) and (min-width: 768px){
|
||||||
|
.visible-sm{ display: block !important;}
|
||||||
|
.hidden-sm {display: none !important;}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 991px){
|
||||||
|
|
||||||
|
.stui-pannel-side{ padding: 0;}
|
||||||
|
|
||||||
|
/* screen */
|
||||||
|
.stui-screen__list{ height: 40px; padding:10px 0 10px; overflow:hidden; white-space: nowrap;}
|
||||||
|
.stui-screen__list:last-child{ padding: 10px 0 0;}
|
||||||
|
.stui-screen__list li{ float: none; display: inline-block; margin-right:10px; margin-bottom:0}
|
||||||
|
.stui-screen__list li span{padding:2px 5px 2px 0}
|
||||||
|
.stui-screen__list li a{padding:2px 5px 2px; white-space:nowrap}
|
||||||
|
.stui-screen__list.letter-list li{ margin-right: 5px; margin-bottom: 0;}
|
||||||
|
.stui-screen__list.letter-list li a,.stui-screen__list.letter-list li.active a{padding:2px 5px 2px}
|
||||||
|
|
||||||
|
/* vod-list */
|
||||||
|
.stui-vodlist__detail .title.active{ font-size: 14px; margin-bottom: 0;}
|
||||||
|
|
||||||
|
/* media-list */
|
||||||
|
.stui-vodlist__media li .thumb .v-thumb{ width: 110px;}
|
||||||
|
.stui-vodlist__media li .thumb .w-thumb{ width: 130px;}
|
||||||
|
.stui-vodlist__media li .thumb .f-thumb{ width: 70px;}
|
||||||
|
|
||||||
|
/* play-list */
|
||||||
|
.stui-content__playlist{ -webkit-overflow-scrolling : touch;}
|
||||||
|
.stui-content__playlist.column3 li{ width: 50%;}
|
||||||
|
.stui-content__playlist.column6 li{ width: 25%;}
|
||||||
|
.stui-content__playlist.column8 li{ width: 20%;}
|
||||||
|
.stui-content__playlist.column10 li{ width: 16.6666667%;}
|
||||||
|
|
||||||
|
/* modal */
|
||||||
|
.stui-modal__dialog{ width: 320px; margin: 50px auto;}
|
||||||
|
|
||||||
|
@media (max-width: 767px){
|
||||||
|
.visible-xs { display: block !important;}
|
||||||
|
.hidden-xs {display: none!important;}
|
||||||
|
|
||||||
|
/* all */
|
||||||
|
body{ font-size: 12px;}
|
||||||
|
|
||||||
|
/* text */
|
||||||
|
h1{ font-size:20px; line-height: 24px;}
|
||||||
|
h2{ font-size:18px; line-height: 22px;}
|
||||||
|
h3{ font-size:16px; line-height: 20px;}
|
||||||
|
h4{ font-size:14px; line-height: 18px;}
|
||||||
|
h5{ font-size:12px; line-height: 16px;}
|
||||||
|
h6{ font-size:10px; line-height: 14px;}
|
||||||
|
|
||||||
|
/* btn */
|
||||||
|
.btn{padding: 6px 20px;}
|
||||||
|
.btn-min{ padding: 3px 8px;}
|
||||||
|
.btn-lg{ padding: 12px 24px;}
|
||||||
|
|
||||||
|
/*nav*/
|
||||||
|
.nav{ height: 20px;}
|
||||||
|
.nav-head > li{ margin-top: 2px; margin-right: 20px;}
|
||||||
|
.nav-head > li > a{ padding-bottom: 10px; font-size: 14px;}
|
||||||
|
.nav-tabs > li{ margin-left: 20px;}
|
||||||
|
.nav-tabs > li > a{padding: 6px 0 6px;}
|
||||||
|
.nav-page > li > a{ padding: 0 3px; height: 20px; line-height: 18px;}
|
||||||
|
|
||||||
|
/* pic-text */
|
||||||
|
.pic-text-silde{ font-size: 12px;}
|
||||||
|
|
||||||
|
/* line */
|
||||||
|
.split-line{ height: 12px; margin-left: 5px; margin-right: 5px;}
|
||||||
|
.top-line:before,.top-line-dot:before{-webkit-transform-origin: 0 0;transform-origin: 0 0;-webkit-transform: scaleY(0.5);transform: scaleY(0.5);}
|
||||||
|
.bottom-line:after,.bottom-line-dot:before{ -webkit-transform-origin: 0 100%;transform-origin: 0 100%; -webkit-transform: scaleY(0.5);transform: scaleY(0.5);}
|
||||||
|
.m-top-line,.m-top-line-dot,.m-bottom-line,.m-bottom-line-dot{ position: relative;}
|
||||||
|
.m-top-line:before,.m-top-line-dot:before{content: " "; position: absolute; left: 0; top: 0; right: 0; width: 100%; height: 1px; -webkit-transform-origin: 0 0;transform-origin: 0 0;-webkit-transform: scaleY(0.5);transform: scaleY(0.5);}
|
||||||
|
.m-bottom-line:after,.m-bottom-line-dot:before{content: " "; position: absolute; left: 0; bottom: 0; right: 0; width: 100%; height: 1px; -webkit-transform-origin: 0 100%;transform-origin: 0 100%; -webkit-transform: scaleY(0.5);transform: scaleY(0.5);}
|
||||||
|
|
||||||
|
/* pannel */
|
||||||
|
.stui-pannel{ margin-bottom: 10px;}
|
||||||
|
.stui-pannel.stui-pannel-x{ margin: 0 0 5px;}
|
||||||
|
.stui-pannel-bg{border-radius: 0;}
|
||||||
|
.stui-pannel-box{ padding:10px 5px;}
|
||||||
|
.stui-pannel-box.active{ margin:5px;}
|
||||||
|
.stui-pannel_hd{ padding:0 5px 10px;}
|
||||||
|
|
||||||
|
/* pannel-head */
|
||||||
|
.stui-pannel__head{ height: 20px;}
|
||||||
|
.stui-pannel__head.active{height: 30px;}
|
||||||
|
.stui-pannel__head .title,.stui-pannel__head .title a{font-size: 16px;}
|
||||||
|
.stui-pannel__head .title img{ width: 18px; height: 18px; margin-right: 5px; vertical-align: -3px;}
|
||||||
|
.stui-pannel__head .more{ line-height: 20px;}
|
||||||
|
|
||||||
|
/* vod-list */
|
||||||
|
.stui-vodlist__thumb .tag{ padding: 0 5px;}
|
||||||
|
.stui-vodlist__thumb .silde-title{ font-size: 12px;}
|
||||||
|
.stui-vodlist__detail .title,.stui-vodlist__detail .title.active{margin-bottom: 0; font-size: 12px;}
|
||||||
|
|
||||||
|
/* media-list */
|
||||||
|
.stui-vodlist__media li .thumb .v-thumb{ width: 100px;}
|
||||||
|
.stui-vodlist__media li .thumb .w-thumb{ width: 130px;}
|
||||||
|
.stui-vodlist__media li .thumb .f-thumb{ width: 70px;}
|
||||||
|
.stui-vodlist__media li .detail{ padding: 0 10px;}
|
||||||
|
.stui-vodlist__media li .detail.active{ padding-left: 0; padding-right: 10px;}
|
||||||
|
|
||||||
|
/* text-list */
|
||||||
|
.stui-vodlist__text li a{ padding:10px 0;}
|
||||||
|
.stui-vodlist__text.downlist li{ padding: 5px 0 0;}
|
||||||
|
|
||||||
|
/* play-list */
|
||||||
|
.stui-content__playlist li a{padding:5px 10px;font-size:12px}
|
||||||
|
.stui-content__playlist.column3 li{ float: none; width: 100%;}
|
||||||
|
.stui-content__playlist.column6 li,.stui-content__playlist.column8 li,.stui-content__playlist.column10 li,.stui-content__playlist.column12 li{ width: 25%;}
|
||||||
|
|
||||||
|
/* page */
|
||||||
|
.stui-page li{float:left;width:20%;margin:0;padding:0 5px 0 5px}
|
||||||
|
.stui-page li a,.stui-page__box li .num{display:block;padding:5px 0;text-align:center}
|
||||||
|
.stui-page li.page-item{ width: auto; margin-bottom: 5px;}
|
||||||
|
.stui-page li.page-item a{ padding: 5px 15px;}
|
||||||
|
|
||||||
|
/* extra */
|
||||||
|
.stui-extra{right:15px;bottom:15px}
|
||||||
|
.stui-extra li{padding:8px 0 0}
|
||||||
|
.stui-extra li a,.stui-extra li span{width:35px;height:35px;line-height:35px;font-size:16px}
|
||||||
|
.stui-extra li a .icon,.stui-extra li span .icon{font-size:16px}
|
||||||
|
.stui-extra li a img{margin-top:8px;width:18px;height:18px}
|
||||||
|
|
||||||
|
/* carousel */
|
||||||
|
.carousel .list{ margin-right: 10px;}
|
||||||
|
|
||||||
|
/* flickity */
|
||||||
|
.flickity-prev-next-button{display: none;}
|
||||||
|
.flickity-prev-next-button.previous{left:5px;border-radius:0 5px 5px 0}
|
||||||
|
.flickity-prev-next-button.next{right:5px;border-radius:5px 0 0 5px}
|
||||||
|
.flickity-page-dots{ bottom: 15px;}
|
||||||
|
|
||||||
|
/* modal */
|
||||||
|
.stui-modal__dialog{ width: 100%; margin: 0; padding: 50px 20px;}
|
||||||
|
|
||||||
|
.carousel-control{ width: 50px; height: 100%;}
|
||||||
|
.carousel-control .icon{ margin-top: -15px; width: 30px; height: 30px; font-size: 20px; line-height: 30px;}
|
||||||
|
.carousel-control.left .icon{ left: 10px;}
|
||||||
|
.carousel-control.right .icon{ right: 10px;}
|
||||||
|
|
||||||
|
}
|
||||||
|
@media (max-width: 374px){
|
||||||
|
.visible-mi{ display: block !important;}
|
||||||
|
.hidden-mi{display: none !important;}
|
||||||
|
|
||||||
|
/* media-list */
|
||||||
|
.stui-vodlist__media li .thumb .v-thumb{ width: 90px;}
|
||||||
|
.stui-vodlist__media li .thumb .w-thumb{ width: 100px;}
|
||||||
|
.stui-vodlist__media li .thumb .f-thumb{ width: 50px;}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
130
code/public/template/videodadi/css/stui_block_color.css
Normal file
@@ -0,0 +1,130 @@
|
|||||||
|
/*!
|
||||||
|
* Edition v3.0 Copyright 2016-2018 http://v.shoutu.cn
|
||||||
|
* Email 726662013@qq.com,admin@shoutu.cn
|
||||||
|
*/
|
||||||
|
@charset "utf-8";
|
||||||
|
|
||||||
|
/* all */
|
||||||
|
body{ background: #FFFFFF; color: #666;}
|
||||||
|
|
||||||
|
/* text */
|
||||||
|
a,h1, h2, h3, h4, h5, h6{ color: #333333;}
|
||||||
|
a:hover{ color: #FF9900;}
|
||||||
|
.text-red{ color: red;}
|
||||||
|
.text-muted{ color: #999999;}
|
||||||
|
|
||||||
|
/* form */
|
||||||
|
.form-control{ background-color:#F5F5F5; color: #999999; border: 1px solid #EEEEEE;}
|
||||||
|
.form-control.colorfff{ background-color: #FFFFFF;}
|
||||||
|
.form-control:focus{border-color:#FF9900; -webkit-box-shadow:inset 0 1px 1px rgba(255,136,0,.075),0 0 8px rgba(255,136,0,.6);}
|
||||||
|
|
||||||
|
/* btn */
|
||||||
|
.btn,.btn:hover,.btn .icon{ color: #333333;}
|
||||||
|
.btn{ border: 1px solid #EEEEEE;}
|
||||||
|
.btn-default{ background-color: #f5f5f5; color: #333333;}
|
||||||
|
.btn-default:hover{ background-color: #f0eeee;}
|
||||||
|
.btn-primary{ background-color: #FF9900; border: 1px solid #FF9900; color: #FFFFFF;}
|
||||||
|
.btn-primary .icon{ color: #FFFFFF;}
|
||||||
|
.btn-primary:hover{ background-color: #FF6600; border: 1px solid #FF6600; color: #FFFFFF;}
|
||||||
|
.btn-primary:hover .icon{ color: #FFFFFF;}
|
||||||
|
|
||||||
|
/* dropdown */
|
||||||
|
.dropdown-menu{ background-color: #FFFFFF; border: 1px solid #EEEEEE;}
|
||||||
|
.dropdown-menu:before{background-color: #FFFFFF; border-color: #EEEEEE;}
|
||||||
|
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover{ background-color: #FF9900; color: #FFFFFF;}
|
||||||
|
|
||||||
|
/* line */
|
||||||
|
.split-line{ background-color: #EEEEEE;}
|
||||||
|
.top-line:before{ border-top: 1px solid #EEEEEE;}
|
||||||
|
.bottom-line:after{ border-bottom: 1px solid #EEEEEE;}
|
||||||
|
.top-line-dot:before{ border-top: 1px dotted #EEEEEE;}
|
||||||
|
.bottom-line-dot:before{ border-bottom: 1px dotted #EEEEEE;}
|
||||||
|
|
||||||
|
/* badge */
|
||||||
|
.badge{ background-color: #EEEEEE;}
|
||||||
|
.badge-first{ background-color: #FF4A4A; color: #FFFFFF;}
|
||||||
|
.badge-second{ background-color: #FF7701; color: #FFFFFF;}
|
||||||
|
.badge-third{ background-color: #FFB400; color: #FFFFFF;}
|
||||||
|
|
||||||
|
/* nav */
|
||||||
|
.nav-head > li.active > a,.nav-tabs > li.active > a{ border-bottom: 2px solid #FF9900; color: #FF9900;}
|
||||||
|
.nav-tag > li > a,.nav-page > li > a{ background-color: #FFFFFF; border: 1px solid #EEEEEE; color: #333333;}
|
||||||
|
.nav-tag > li > a:hover,.nav-tag > li.active a,.nav-page > li > a:hover,.nav-page > li.active > a{ background-color: #FF9900; border: 1px solid #FF9900; color: #FFFFFF;}
|
||||||
|
.nav-page > li > a:hover > .icon{ color: #fff;}
|
||||||
|
|
||||||
|
/* tag */
|
||||||
|
.tag-type li a{ background-color: #FFFFFF; border: 1px solid #EEEEEE; color: #666666;}
|
||||||
|
.tag-type li a:hover,.tag-type li.active a{ background-color: #FF9900; border: 1px solid #FF9900; color: #FFFFFF;}
|
||||||
|
.tag-btn li a{ background-color: #F8F8F8; color: #666666;}
|
||||||
|
.tag-btn li a.active,.tag-text li a.active,.tag-type li a.active{ color: #FF9900;}
|
||||||
|
.tag-btn li a:hover,.tag li.active a{ background-color: #FF9900; color: #FFFFFF;}
|
||||||
|
|
||||||
|
/* pic-tag */
|
||||||
|
.pic-tag{ background-color: rgba(0,0,0,0.6); color: #FFFFFF;}
|
||||||
|
.pic-tag.active,.pic-tag-h{ background-color: #FF9900; color: #FFFFFF;}
|
||||||
|
.pic-text,.pic-title-b{ background-repeat: no-repeat; background-image: linear-gradient(transparent,rgba(0,0,0,.5)); color: #FFFFFF;}
|
||||||
|
.pic-text.active{ background: rgba(0,0,0,0.6); color: #FFFFFF;}
|
||||||
|
.pic-title-t{background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 100%); color: #FFFFFF;}
|
||||||
|
|
||||||
|
/* pannel */
|
||||||
|
.stui-pannel-bg{background-color: #FFFFFF;}
|
||||||
|
|
||||||
|
/* tabbar */
|
||||||
|
.stui_nav__taddar .item .icon,.stui_nav__taddar .item .title{ color: #999;}
|
||||||
|
.stui_nav__taddar .item.active .title,.stui_nav__taddar .item.active .icon{color: #FF9900;}
|
||||||
|
.stui_nav__taddar.fixed{ background-color: #FFFFFF;}
|
||||||
|
|
||||||
|
/* vodlist */
|
||||||
|
.stui-vodlist__bg{background-color: #F8F8F8;}
|
||||||
|
.stui-vodlist__bg:hover{ box-shadow: 0 3px 5px rgba(0,0,0,.08);}
|
||||||
|
|
||||||
|
/* text-list */
|
||||||
|
.stui-vodlist__text.striped .striped-head,.stui-vodlist__text.to-color li:nth-of-type(odd){ background-color: #f5f5f5;}
|
||||||
|
|
||||||
|
/* link */
|
||||||
|
.stui-link__pic li a{ background-color: #FFFFFF; border: 1px solid #F5F5F5;}
|
||||||
|
.stui-link__pic li a:hover{ border: 1px solid #FF9900;}
|
||||||
|
|
||||||
|
/* screen */
|
||||||
|
.stui-screen__list li a{ color: #333333;}
|
||||||
|
.stui-screen__list li.active a{ background-color: #FF9900; color: #FFFFFF;}
|
||||||
|
|
||||||
|
/* playlist */
|
||||||
|
.stui-content__playlist li a{ border: 1px solid #EEEEEE;}
|
||||||
|
.stui-content__playlist li a:hover,.stui-content__playlist li.active a{ border: 1px solid #FF9900; background-color: #FF9900; color: #FFFFFF;}
|
||||||
|
|
||||||
|
/* player */
|
||||||
|
.stui-player__video{ background-color: #000000;}
|
||||||
|
|
||||||
|
/* page */
|
||||||
|
.stui-page li a,.stui-page li .num{background-color: #FFFFFF; border: 1px solid #EEEEEE;}
|
||||||
|
.stui-page li a:hover,.stui-page li.active a,.stui-page li.active .num,.stui-page li.disabled a{ background-color: #FF9900; color: #FFFFFF; border: 1px solid #FF9900;}
|
||||||
|
.stui-page-text a,.stui-page-text em,.stui-page-text span{background-color:#FFFFFF; border:1px solid #EEEEEE;}
|
||||||
|
.stui-page-text span.pagenow{background-color:#FF9900; color:#FFFFFF; border:1px solid #f80}
|
||||||
|
.stui-page-text .pagego{ border: 1px solid #EEEEEE;}
|
||||||
|
.stui-page-text .pagebtn{background-color: #FFFFFF; border: 1px solid #EEEEEE;}
|
||||||
|
|
||||||
|
/* extra */
|
||||||
|
.stui-extra li a,.stui-extra li span{ background-color: #FFFFFF; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);}
|
||||||
|
.stui-extra li a.backtop{ background-color: rgba(0,0,0,0.6); color: #FFFFFF; }
|
||||||
|
.stui-extra li .sideslip{ background-color: #FFFFFF; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);}
|
||||||
|
.stui-extra li .sideslip:before{ background-color: #FFFFFF; border-color: rgba(0, 0, 0, 0.1);}
|
||||||
|
|
||||||
|
/* popup */
|
||||||
|
.popup{ background-color: #F8F8F8;}
|
||||||
|
.popup-head{ background-color: #FFFFFF;}
|
||||||
|
|
||||||
|
@media (max-width: 767px){
|
||||||
|
|
||||||
|
/* form */
|
||||||
|
.form-control{ background-color:#F8F8F8; color: #999999; border: 0;}
|
||||||
|
|
||||||
|
/*pannel*/
|
||||||
|
.stui-pannel-bg,.stui-vodlist__bg,.stui-vodlist__bg:hover{box-shadow: none;}
|
||||||
|
|
||||||
|
/* line */
|
||||||
|
.m-top-line:before{ border-top: 1px solid #EEEEEE;}
|
||||||
|
.m-bottom-line:after{ border-bottom: 1px solid #EEEEEE;}
|
||||||
|
.m-top-line-dot:before{ border-top: 1px dotted #EEEEEE;}
|
||||||
|
.m-bottom-line-dot:before{ border-bottom: 1px dotted #EEEEEE;}
|
||||||
|
}
|
||||||
143
code/public/template/videodadi/css/stui_default.css
Normal file
@@ -0,0 +1,143 @@
|
|||||||
|
/*!
|
||||||
|
* Edition v2.0 Copyright 2016-2018 http://v.shoutu.cn
|
||||||
|
* Email 726662013@qq.com,admin@shoutu.cn
|
||||||
|
*/
|
||||||
|
@charset "utf-8";
|
||||||
|
/* all */
|
||||||
|
body{ padding-top: 80px}
|
||||||
|
|
||||||
|
/* header */
|
||||||
|
.stui-header__top{ position:fixed; top:0;z-index: 999;width:100%; height: 60px; background-color: #292838; border-top: 5px solid #155FAA;}
|
||||||
|
.top-fixed-down{margin-top:-60px}
|
||||||
|
.stui-header__side{float:right}
|
||||||
|
|
||||||
|
/* header-logo */
|
||||||
|
.stui-header__logo,.stui-header__menu{float:left}
|
||||||
|
.stui-header__logo{margin-top: 0}
|
||||||
|
.stui-header__logo .logo{ display:block; width:150px; height:50px; background:url(../img/logo_pc.png) no-repeat; background-position:50% 50%; background-size:cover}
|
||||||
|
.stui-header__logo .logo-text{ display:block; width:150px; height:50px; font-size:1.5rem;color: #ff9900;line-height: 50px;text-align: center;letter-spacing: 5px;}
|
||||||
|
|
||||||
|
/* header-menu */
|
||||||
|
.stui-header__menu{position:relative;margin-left:10px}
|
||||||
|
.stui-header__menu li{float:left;}
|
||||||
|
.stui-header__menu li a{ display:inline-block; height: 55px; line-height: 50px; font-size:15px; padding: 0 20px; color: #fff;}
|
||||||
|
.stui-header__menu li.active a{ background-color: #155FAA; color: #fff;}
|
||||||
|
|
||||||
|
/* header-seacrh */
|
||||||
|
.stui-header__search{float:left;position:relative;margin-top:12px;width:200px}
|
||||||
|
.stui-header__search .submit{display:block;position:absolute;top:0;right:0;width:30px;height:30px;line-height:30px;text-align:center; background: none; border: 0;cursor: pointer;}
|
||||||
|
.stui-header__search .submit .icon{font-size:14px;color:#999}
|
||||||
|
|
||||||
|
/* header-user */
|
||||||
|
.stui-header__user{float:right}
|
||||||
|
.stui-header__user > li{ float:left; position: relative; padding: 15px 0 10px; margin-left: 30px;}
|
||||||
|
.stui-header__user > li > a .icon{ display: inline-block; font-size: 24px; line-height: 24px; color: #fff;}
|
||||||
|
.stui-header__user > li .dropdown{ display: none; position: absolute; z-index: 999; width: 240px; top: 100%; right: -15px; padding: 15px; font-size: 12px; color: #999; background-color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.2); border-radius: 4px; background-color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.2);}
|
||||||
|
.stui-header__user > li .dropdown:before{ content:" "; width:10px; height:10px; -webkit-transform:rotate(-45deg); -ms-transform:rotate(-45deg); transform:rotate(-45deg); position: absolute; top:-5px; right: 22px; background-color: #fff; border-top: 1px solid #eee; border-right: 1px solid #eee;}
|
||||||
|
.stui-header__user .dropdown li{ position: relative; padding: 10px 0;}
|
||||||
|
.stui-header__user .dropdown li:first-child{ margin-top: 10px;}
|
||||||
|
.stui-header__user .dropdown li:last-child{ padding-bottom: 0;}
|
||||||
|
.stui-header__user > li:hover .dropdown{ display: block;}
|
||||||
|
|
||||||
|
/* content */
|
||||||
|
.stui-content__detail,.stui-content__thumb{display:table-cell;vertical-align:top}
|
||||||
|
.stui-content__thumb .v-thumb{width:190px}
|
||||||
|
.stui-content__thumb .w-thumb{width:300px}
|
||||||
|
.stui-content__detail{width:100%;padding:10px 20px;}
|
||||||
|
.stui-content__detail .title{margin:10px 0 10px;line-height:30px}
|
||||||
|
.stui-content__detail .title .score{display: inline-block; margin-left: 10px; font-family: Georgia,"Times New Roman",Times,serif; font-size: 24px; line-height: 24px; color: #09BB07;}
|
||||||
|
.stui-content__detail .data{margin-bottom:10px}
|
||||||
|
.stui-content__detail .data li{float:left;margin-right:20px}
|
||||||
|
.stui-content__detail .desc{padding-left:42px}
|
||||||
|
.stui-content__detail .desc .left{margin-left:-42px}
|
||||||
|
|
||||||
|
/* player */
|
||||||
|
.stui-player__video{ background-color: #000}
|
||||||
|
.stui-player__detail{ margin-top: 20px;}
|
||||||
|
.stui-player__detail .more-btn{ float: right; padding-top: 10px;}
|
||||||
|
.stui-player__detail .more-btn li{ display: inline-block; margin-left: 10px;}
|
||||||
|
.stui-player__detail .more-btn .btn{ padding: 6px 15px;}
|
||||||
|
.stui-player__detail .title{margin:0 0 10px}
|
||||||
|
.stui-player__detail .detail-content{padding-top:10px}
|
||||||
|
.stui-player__detail .desc{padding-left:42px}
|
||||||
|
.stui-player__detail .desc .left{margin-left:-42px}
|
||||||
|
|
||||||
|
/* autocomplete */
|
||||||
|
.autocomplete-suggestions{ padding: 0 10px; margin-top: 5px; border-radius:4px; background-color: #FFFFFF; box-shadow: 0 2px 10px rgba(0,0,0,.05);}
|
||||||
|
.autocomplete-suggestions.active{position: absolute; z-index: 9999; top: 100%; width: 100%;}
|
||||||
|
.autocomplete-suggestion{padding:10px 0; cursor:pointer; border-top: 1px solid #EEEEEE;}
|
||||||
|
.autocomplete-suggestion:first-child{border-top:0}
|
||||||
|
.mac_results{ z-index: 9999; padding: 0 10px; margin-top: 5px; border-radius:4px; background-color: #FFFFFF; border:1px solid #EEEEEE; box-shadow: 0 2px 10px rgba(0,0,0,.05);}
|
||||||
|
.mac_results li{padding:10px 0; cursor:pointer; border-top: 1px solid #EEEEEE;}
|
||||||
|
.mac_results li:first-child{ border: 0;}
|
||||||
|
|
||||||
|
|
||||||
|
@media (min-width:768px){
|
||||||
|
.container{width:750px}
|
||||||
|
}
|
||||||
|
@media (min-width:992px){
|
||||||
|
.container{width:920px}
|
||||||
|
}
|
||||||
|
@media (min-width:1200px){
|
||||||
|
.container{width:1170px}
|
||||||
|
}
|
||||||
|
@media (min-width:1400px){
|
||||||
|
.container{width:1380px}
|
||||||
|
}
|
||||||
|
@media (max-width:1024px){
|
||||||
|
|
||||||
|
/* all */
|
||||||
|
body{padding-top:100px}
|
||||||
|
|
||||||
|
/* header */
|
||||||
|
.top-fixed-down{margin-top:-55px}
|
||||||
|
.stui-header__side{float:none;position:absolute;top:0;left:150px;right:0;width:auto}
|
||||||
|
.stui-header__logo,.stui-header__menu{float:none}
|
||||||
|
.stui-header__logo{margin:10px 0 10px}
|
||||||
|
.stui-header__logo .logo{width:127px;height:30px; background:url(../img/logo_h5.png) no-repeat; background-position:50% 50%; background-size:cover;}
|
||||||
|
.stui-header__logo .logo-text{width:127px;height:30px; font-size:1.5rem;color: #ff9900;line-height: 30px;text-align: center;letter-spacing: 2px;}
|
||||||
|
.stui-header__search{float:right;margin-top:10px}
|
||||||
|
.stui-header__top{ padding: 0 10px; height: 100px;}
|
||||||
|
.stui-header__menu{margin:0;padding:0;}
|
||||||
|
.stui-header__menu:before{content:" ";position:absolute;left:0;top:0;right:0;width:100%;height:1px;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(.5);transform:scaleY(.5); border-top: 1px solid #155FAA}
|
||||||
|
.stui-header__menu li{ margin-top:0;margin-right:10px}
|
||||||
|
.stui-header__menu li a{ padding: 0; font-size:14px; height: 40px; line-height: 40px; white-space:nowrap; color: #fff;}
|
||||||
|
.stui-header__menu li.active a{ position:relative; background: none; color: #ff9900;}
|
||||||
|
.stui-header__user > li{ padding: 15px 0 10px; margin-right: 10px;}
|
||||||
|
.stui-header__user > li .dropdown{ right: 0;}
|
||||||
|
.stui-header__user > li .dropdown:before{ right: 8px;}
|
||||||
|
.stui-header__menu > li:hover .dropdown,.stui-header__user > li:hover .dropdown{ display: none;}
|
||||||
|
}
|
||||||
|
@media (max-width:767px){
|
||||||
|
|
||||||
|
/* header */
|
||||||
|
.stui-header__search{position:absolute;top:0;left:0;right:50px;width:auto}
|
||||||
|
.stui-header__user > li{ padding: 14px 0; margin: 0;}
|
||||||
|
|
||||||
|
/* content */
|
||||||
|
.stui-content__thumb .v-thumb{width:115px}
|
||||||
|
.stui-content__thumb .w-thumb{width:160px}
|
||||||
|
.stui-content__detail{padding:0 10px}
|
||||||
|
.stui-content__detail .title{margin:10px 0 10px;font-size:16px;line-height:18px}
|
||||||
|
.stui-content__detail .data{margin:0 0 10px;font-size:12px}
|
||||||
|
.stui-content__detail .play-btn{margin:0;padding:0}
|
||||||
|
|
||||||
|
/* player */
|
||||||
|
.stui-player__detail.detail .title{ margin-top: 10px; font-size: 16px;}
|
||||||
|
.stui-player__detail{ margin-top: 0;}
|
||||||
|
.stui-player__detail .data .title{font-size:16px}
|
||||||
|
.stui-player__detail .more-btn{ margin-bottom: 10px;}
|
||||||
|
.stui-player__detail .more-btn{ float: none; padding: 10px; background-color: #222; display: -webkit-box; display: -webkit-flex; display: flex;}
|
||||||
|
.stui-player__detail .more-btn li{ margin: 0; padding: 0 5px; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; text-align: center;}
|
||||||
|
.stui-player__detail .more-btn .btn{ display: block; padding: 6px;}
|
||||||
|
|
||||||
|
/* type */
|
||||||
|
.stui-mobile__type li{padding:0 20px}
|
||||||
|
.stui-mobile__type li a{display:block;padding:10px 0;text-align:center}
|
||||||
|
|
||||||
|
/* foot */
|
||||||
|
.stui-foot{padding:20px 0}
|
||||||
|
|
||||||
|
}
|
||||||
|
.fa-thumbs-up:before{content:"\f164"}
|
||||||
|
.fa-thumbs-down:before{content:"\f165"}
|
||||||
161
code/public/template/videodadi/font/iconfont.css
Normal file
BIN
code/public/template/videodadi/icon/icon_12.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
code/public/template/videodadi/icon/icon_20.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
code/public/template/videodadi/icon/icon_26.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
code/public/template/videodadi/icon/icon_27.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
code/public/template/videodadi/icon/icon_30.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
code/public/template/videodadi/icon/icon_6.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
code/public/template/videodadi/icon/icon_dianshiju.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
code/public/template/videodadi/icon/icon_dianying.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
code/public/template/videodadi/icon/icon_donman.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
code/public/template/videodadi/icon/icon_duanju.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
code/public/template/videodadi/icon/icon_zonyi.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
code/public/template/videodadi/img-back/favicon-kx.ico
Normal file
|
After Width: | Height: | Size: 580 B |
BIN
code/public/template/videodadi/img-back/favicon.ico
Normal file
|
After Width: | Height: | Size: 291 B |
BIN
code/public/template/videodadi/img-back/load.gif
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
BIN
code/public/template/videodadi/img-back/logo_h5.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |