小说第一模板,url修改

This commit is contained in:
make
2025-03-31 11:27:04 +08:00
parent c3b0fd14d1
commit 7fc4233066
14 changed files with 244 additions and 169 deletions

View File

@@ -7,21 +7,22 @@ use app\home\controller\Novel;
use app\home\controller\User; use app\home\controller\User;
use think\facade\Route; use think\facade\Route;
# 路由别名,可以忽略 # 路由别名,可以忽略 ->ext('html')
// Route::alias("/index.html", "/")->append(['boolIsMobile' => true]); // Route::alias("/index.html", "/")->append(['boolIsMobile' => true]);
// Route::alias("/pc/index.html", "/")->append(['boolIsMobile' => false]); // Route::alias("/pc/index.html", "/")->append(['boolIsMobile' => false]);
/**
* 首页
*/
Route::get("/", [Index::class,'index'])->ext('html')->append(['boolIsMobile' => true]); Route::get("/", [Index::class,'index'])->ext('html')->append(['boolIsMobile' => true]);
Route::get("/index", [Index::class,'index'])->ext('html')->append(['boolIsMobile' => true]);
Route::get("/pc/index", [Index::class,'getPcIndex'])->ext('html')->append(['boolIsMobile' => false]);
Route::get("/pc/", [Index::class,'getPcIndex'])->append(['boolIsMobile' => false]); Route::get("/pc/", [Index::class,'getPcIndex'])->append(['boolIsMobile' => false]);
// Route::get("/index", [Index::class,'index'])->ext('html')->append(['boolIsMobile' => true]);
// Route::get("/pc/index", [Index::class,'getPcIndex'])->ext('html')->append(['boolIsMobile' => false]);
// 书架
Route::get('bookshelf', [User::class,'getBookShelf'])->ext('html')->append(['boolIsMobile' => true]);
Route::get('/pc/bookshelf', [User::class,'getBookShelf'])->ext('html')->append(['boolIsMobile' => false]);
//排行榜 //排行榜
Route::get('paihang/all', [Novel::class,'getNovelRank'])->append(['boolIsMobile' => true]); Route::get('/paihang/all', [Novel::class,'getNovelRank'])->append(['boolIsMobile' => true]);
Route::get("/pc/paihang/all", [Novel::class,'getNovelRank'])->append(['boolIsMobile' => false]); Route::get("/pc/paihang/all", [Novel::class,'getNovelRank'])->append(['boolIsMobile' => false]);
/** /**
@@ -40,79 +41,24 @@ Route::get('/pc/nvsheng-xiaoshuo', [Novel::class, 'getNovelChannel'])->append([
Route::get('/shuku/all', [Novel::class,'getLibrary'])->append(['boolIsMobile' => true]); Route::get('/shuku/all', [Novel::class,'getLibrary'])->append(['boolIsMobile' => true]);
Route::get('/pc/shuku/all', [Novel::class,'getLibrary'])->append(['boolIsMobile' => false]); Route::get('/pc/shuku/all', [Novel::class,'getLibrary'])->append(['boolIsMobile' => false]);
Route::get('/shuku/:strNovelChannel-:strCategory-:strStatus-:intPage', [Novel::class,'getLibrary']) Route::get('/shuku/:strNovelChannel-:strCategory-:strStatus-:intPage', [Novel::class,'getLibrary'])
->pattern([ ->pattern([
'strNovelChannel' => '[\w]*', 'strNovelChannel' => '[\w]*',
'strCategory' => '[\w]*', 'strCategory' => '[\w]*',
'strStatus' => '[\w]*', 'strStatus' => '[\w]*',
'intPage' => '\d+' 'intPage' => '\d+'
]) ])
->append(['boolIsMobile' => true]); ->append(['boolIsMobile' => true]);
Route::get('/pc/shuku/:strNovelChannel-:strCategory-:strStatus-:intPage', [Novel::class,'getLibrary']) Route::get('/pc/shuku/:strNovelChannel-:strCategory-:strStatus-:intPage', [Novel::class,'getLibrary'])
->pattern([ ->pattern([
'strNovelChannel' => '[\w]*', 'strNovelChannel' => '[\w]*',
'strCategory' => '[\w]*', 'strCategory' => '[\w]*',
'strStatus' => '[\w]*', 'strStatus' => '[\w]*',
'intPage' => '\d+' 'intPage' => '\d+'
]) ])
->append(['boolIsMobile' => false]); ->append(['boolIsMobile' => false]);
//分类
// Route::get('class', 'Novel/getNovelCategory')->ext('html')->append(['boolIsMobile' => true]);
// Route::get('/pc/class', 'Novel/getNovelCategory')->ext('html')->append(['boolIsMobile' => false]);
// // //分类 使用模板:xmttxs
// // Route::get('/books', 'Novel/getNovelCategory')->ext('html')->append(['boolIsMobile' => true]);
// // Route::get('/pc/books', 'Novel/getNovelCategory')->ext('html')->append(['boolIsMobile' => false]);
// // Route::get('/books/[:intCategoryId]-[:intPage]', 'Novel/getNovelCategory')->ext('html')->append(['boolIsMobile' => true]);
// Route::get('/pc/fenlei/<intCategoryId]-[:intPage]', 'Novel/getNovelCategory')
// ->append(['boolIsMobile' => false])
// ->pattern(['intCategoryId' => '\d+','intPage' => '\d+',])
// ->ext('html');
// 文章 列表
Route::get('/article/list-[:intCategoryId]-[:intPage]', [Novel::class,'getArticleList'])->ext('html')->append(['boolIsMobile' => true]);
Route::get('/pc/article/list-[:intCategoryId]-[:intPage]', [Novel::class,'getArticleList'])->ext('html')->append(['boolIsMobile' => false]);
Route::get('/article/list', [Novel::class,'getArticleList'])->ext('html')->append(['boolIsMobile' => true]);
Route::get('/pc/article/list', [Novel::class,'getArticleList'])->ext('html')->append(['boolIsMobile' => false]);
// 文章 详情
Route::get('/article/info-:intArticleId', [Novel::class,'getArticleInfo'])->ext('html')->append(['boolIsMobile' => true]);
Route::get('/pc/article/info-:intArticleId', [Novel::class,'getArticleInfo'])->ext('html')->append(['boolIsMobile' => false]);
/**
* 小说详情
* /book/{strPinYin}-{intNId}.html
* /novel/{strPinYin}-{intNId}.html
* /novel-{strPinYin}-{intNId}.html
* /book-{strPinYin}-{intNId}.html
*/
Route::get('/pc/book/:name-:n_id', [Novel::class, 'getNovelInfo'])
->append(['boolIsMobile' => false, 'intUriType' => 1])
->pattern(['n_id' => '\d+','name' => '[\w-]+',])
->ext('html');
Route::get('/pc/novel/:name-:n_id', [Novel::class, 'getNovelInfo'])
->append(['boolIsMobile' => false, 'intUriType' => 2])
->pattern(['n_id' => '\d+','name' => '[\w-]+',])
->ext('html');
Route::get('/pc/novel-:name-:n_id', [Novel::class, 'getNovelInfo'])
->append(['boolIsMobile' => false, 'intUriType' => 3])
->pattern(['n_id' => '\d+','name' => '[\w-]+',])
->ext('html');
Route::get('/pc/book-:name-:n_id', [Novel::class, 'getNovelInfo'])
->append(['boolIsMobile' => false, 'intUriType' => 4])
->pattern(['n_id' => '\d+','name' => '[\w-]+',])
->ext('html');
// 最新章节-特殊页面处理
Route::get('/pc/books/:name-:n_id/chapter/latest', [Novel::class, 'getNovelNewsChapter'])
->append(['boolIsMobile' => false, 'intUriType' => 1])
->pattern(['n_id' => '\d+','name' => '[\w-]+',])
->ext('html');
/** /**
* 小说章节 * 小说章节
* /xiaoshuo/小说拼音-小说id/zhang-章节排序/章节分页 * /xiaoshuo/小说拼音-小说id/zhang-章节排序/章节分页
@@ -126,6 +72,13 @@ Route::get('/pc/xiaoshuo/:name-:intNovelId/zhang-:intChapterSort/[:intChapterPag
->append(['boolIsMobile' => false, 'intUriType' => 1]) ->append(['boolIsMobile' => false, 'intUriType' => 1])
->pattern(['intNovelId' => '\d+','name' => '[\w-]+','intChapterSort' => '\d+','intChapterPage' => '\d+']); ->pattern(['intNovelId' => '\d+','name' => '[\w-]+','intChapterSort' => '\d+','intChapterPage' => '\d+']);
/**
* 最新章节-特殊页面处理
*/
Route::get('/pc/books/:name-:n_id/chapter/latest', [Novel::class, 'getNovelNewsChapter'])
->append(['boolIsMobile' => false, 'intUriType' => 1])
->pattern(['n_id' => '\d+','name' => '[\w-]+',]);
/** /**
* 小说目录页面 * 小说目录页面
@@ -139,24 +92,84 @@ Route::get('/pc/xiaoshuo/:name-:intNovelId/mulu/:strOrder/[:intPage]', [Novel::c
->append(['boolIsMobile' => false, 'intUriType' => 1]) ->append(['boolIsMobile' => false, 'intUriType' => 1])
->pattern(['intNovelId' => '\d+','name' => '[\w-]+','strOrder' => 'zheng|dao','intPage' => '\d+']); ->pattern(['intNovelId' => '\d+','name' => '[\w-]+','strOrder' => 'zheng|dao','intPage' => '\d+']);
/**
* 小说详情
* /book/{strPinYin}-{intNId}
* /novel/{strPinYin}-{intNId}
* /xiaoshuo/{strPinYin}-{intNId}
* /book-{strPinYin}-{intNId}
* /novel-{strPinYin}-{intNId}
* /xiaoshuo-{strPinYin}-{intNId}
*/
Route::get('/pc/book/:name-:n_id', [Novel::class, 'getNovelInfo'])
->append(['boolIsMobile' => false, 'intUriType' => 1])
->pattern(['n_id' => '\d+','name' => '[\w-]+',]);
Route::get('/pc/novel/:name-:n_id', [Novel::class, 'getNovelInfo'])
->append(['boolIsMobile' => false, 'intUriType' => 2])
->pattern(['n_id' => '\d+','name' => '[\w-]+',]);
Route::get('/pc/xiaoshuo/:name-:n_id', [Novel::class, 'getNovelInfo'])
->append(['boolIsMobile' => false, 'intUriType' => 2])
->pattern(['n_id' => '\d+','name' => '[\w-]+',]);
Route::get('/pc/book-:name-:n_id', [Novel::class, 'getNovelInfo'])
->append(['boolIsMobile' => false, 'intUriType' => 3])
->pattern(['n_id' => '\d+','name' => '[\w-]+',]);
Route::get('/pc/novel-:name-:n_id', [Novel::class, 'getNovelInfo'])
->append(['boolIsMobile' => false, 'intUriType' => 3])
->pattern(['n_id' => '\d+','name' => '[\w-]+',]);
Route::get('/pc/xiaoshuo-:name-:n_id', [Novel::class, 'getNovelInfo'])
->append(['boolIsMobile' => false, 'intUriType' => 3])
->pattern(['n_id' => '\d+','name' => '[\w-]+',]);
// 搜索小说 // 搜索小说
Route::get('search', [Novel::class,'getSearchNovel'])->ext('html')->append(['boolIsMobile' => true]); Route::get('/search', [Novel::class,'getSearchNovel'])->ext('html')->append(['boolIsMobile' => true]);
Route::get('pc/search', [Novel::class,'getSearchNovel'])->ext('html')->append(['boolIsMobile' => false]); Route::get('/pc/search', [Novel::class,'getSearchNovel'])->ext('html')->append(['boolIsMobile' => false]);
// 小说用户中心 // 小说用户中心
Route::get('/user', [User::class,'Index'])->ext('html')->append(['boolIsMobile' => true]); Route::get('/user', [User::class,'Index'])->append(['boolIsMobile' => true]);
Route::get('/pc/user', [User::class,'Index'])->ext('html')->append(['boolIsMobile' => false]); Route::get('/pc/user', [User::class,'Index'])->append(['boolIsMobile' => false]);
// 书架
Route::get('/bookshelf', [User::class,'getBookShelf'])->append(['boolIsMobile' => true]);
Route::get('/pc/bookshelf', [User::class,'getBookShelf'])->append(['boolIsMobile' => false]);
// 历史记录 // 历史记录
Route::get('history', [User::class,'getHistory'])->ext('html')->append(['boolIsMobile' => true]); Route::get('/history', [User::class,'getHistory'])->append(['boolIsMobile' => true]);
Route::get('/pc/history', [User::class,'getHistory'])->ext('html')->append(['boolIsMobile' => false]); Route::get('/pc/history', [User::class,'getHistory'])->append(['boolIsMobile' => false]);
// 文章 列表
Route::get('/article/list-[:intCategoryId]-[:intPage]', [Novel::class,'getArticleList'])->append(['boolIsMobile' => true]);
Route::get('/pc/article/list-[:intCategoryId]-[:intPage]', [Novel::class,'getArticleList'])->append(['boolIsMobile' => false]);
Route::get('/article/list', [Novel::class,'getArticleList'])->append(['boolIsMobile' => true]);
Route::get('/pc/article/list', [Novel::class,'getArticleList'])->append(['boolIsMobile' => false]);
// 文章 详情
Route::get('/article/info-:intArticleId', [Novel::class,'getArticleInfo'])->append(['boolIsMobile' => true]);
Route::get('/pc/article/info-:intArticleId', [Novel::class,'getArticleInfo'])->append(['boolIsMobile' => false]);
//分类 - 其它模板
// Route::get('class', 'Novel/getNovelCategory')->ext('html')->append(['boolIsMobile' => true]);
// Route::get('/pc/class', 'Novel/getNovelCategory')->ext('html')->append(['boolIsMobile' => false]);
// // //分类 使用模板:xmttxs
// // Route::get('/books', 'Novel/getNovelCategory')->ext('html')->append(['boolIsMobile' => true]);
// // Route::get('/pc/books', 'Novel/getNovelCategory')->ext('html')->append(['boolIsMobile' => false]);
// // Route::get('/books/[:intCategoryId]-[:intPage]', 'Novel/getNovelCategory')->ext('html')->append(['boolIsMobile' => true]);
// Route::get('/pc/fenlei/<intCategoryId]-[:intPage]', 'Novel/getNovelCategory')
// ->append(['boolIsMobile' => false])
// ->pattern(['intCategoryId' => '\d+','intPage' => '\d+',])
// ->ext('html');

View File

@@ -1,6 +1,6 @@
<li id="chapter-4b2d5aab58d71" class="on"> <li id="chapter-4b2d5aab58d71" class="on">
<a href="chapter/1-1-1.html">01 天龙问世</a> <a href="/pc/xiaoshuo/name-1/zhang-1">01 天龙问世</a>
</li> </li>
<li id="chapter-486ef2abee55d"> <li id="chapter-486ef2abee55d">
<a href="/chapter/1-1-1.html">02 沧武的小霸王</a> <a href="/pc/xiaoshuo/name-1/zhang-1">02 沧武的小霸王</a>
</li> </li>

View File

@@ -6,6 +6,22 @@
{block name="main"} {block name="main"}
<div class="content"> <div class="content">
<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="/pc/" 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">
<a href="/pc/shuku/all" itemprop="item">
<span itemprop="name">书库</span>
</a>
</li>
</ol>
</nav>
<!--选择搜索 开始--> <!--选择搜索 开始-->
<div class="find"> <div class="find">
<div class="opt"> <div class="opt">
@@ -57,9 +73,9 @@
<li><a href="/pc/{$strNovelChannel}-{$strCategory}-{$strStatus}-7">7</a></li> <li><a href="/pc/{$strNovelChannel}-{$strCategory}-{$strStatus}-7">7</a></li>
<li><a href="/pc/{$strNovelChannel}-{$strCategory}-{$strStatus}-8">8</a></li> <li><a href="/pc/{$strNovelChannel}-{$strCategory}-{$strStatus}-8">8</a></li>
<li class="disabled"><span>...</span></li> <li class="disabled"><span>...</span></li>
<li><a href="/pc//pc/{$strNovelChannel}-{$strCategory}-{$strStatus}-33">33</a></li> <li><a href="/pc/{$strNovelChannel}-{$strCategory}-{$strStatus}-33">33</a></li>
<li><a href="/pc//pc/{$strNovelChannel}-{$strCategory}-{$strStatus}-34">34</a></li> <li><a href="/pc/{$strNovelChannel}-{$strCategory}-{$strStatus}-34">34</a></li>
<li><a href="/pc//pc/{$strNovelChannel}-{$strCategory}-{$strStatus}-2">»</a></li> <li><a href="/pc/{$strNovelChannel}-{$strCategory}-{$strStatus}-2">»</a></li>
</ul> </ul>
</div> </div>
<!--页码切换 结束--> <!--页码切换 结束-->

View File

@@ -16,8 +16,33 @@
{block name="main"} {block name="main"}
<div class="content"> <div class="content">
<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="/pc/" 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">
{eq name="strPageCode" value="boys"}
<a href="/pc/nansheng-xiaoshuo" itemprop="item">
<span itemprop="name">男生</span>
</a>
{else}
<a href="/pc/nvsheng-xiaoshuo" itemprop="item">
<span itemprop="name">女生</span>
</a>
{/eq}
<meta itemprop="position" content="2" />
</li>
</ol>
</nav>
<!--热门推荐 开始--> <!--热门推荐 开始-->
<div class="f2 area"> <div class="f2 area">
<div class="area_head"> <div class="area_head">

View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="/public/layer/need/layer.css" type="text/css"> <link rel="stylesheet" href="/public/layer/need/layer.css" type="text/css">
</head> </head>
<body class="theme-0 w800" data-bid="/novel/332.html" style=""> <body class="theme-0 w800" data-bid='/pc/xiaoshuo/name-1' >
<div class="wrap"> <div class="wrap">
<div class="read-header" id="readHeader"> <div class="read-header" id="readHeader">
<div class="wrap-center cf"> <div class="wrap-center cf">
@@ -20,7 +20,7 @@
</div> </div>
<ul> <ul>
<li> <li>
<cite><a href="/pc/index.html">首页</a></cite> <cite><a href="/pc/">首页</a></cite>
</li> </li>
<li id="j_nearRead" class=""> <li id="j_nearRead" class="">
<cite>最近阅读</cite> <cite>最近阅读</cite>
@@ -30,22 +30,22 @@
<dd> <dd>
<div class="book-wrap cf"> <div class="book-wrap cf">
<div class="book-cover fl"> <div class="book-cover fl">
<a class="link" href="/novel/275.html" target="_blank"> <a class="link" href='/pc/xiaoshuo/name-1' target="_blank">
<img src="https://www.630zw.org/img/176943.jpg" <img src="https://www.630zw.org/img/176943.jpg"
alt="捻转步舞曲[花滑]"></a> alt="捻转步舞曲[花滑]"></a>
</div> </div>
<div class="book-info fl"> <div class="book-info fl">
<h4> <h4>
<a href="/novel/275.html" target="_blank">捻转步舞曲[花滑]</a> <a href='/pc/xiaoshuo/name-1' target="_blank">捻转步舞曲[花滑]</a>
</h4> </h4>
<p> <p>
<span>分类:</span> <span>分类:</span>
<a href="/lists/19.html">武侠仙侠</a> <a href='/pc/shuku/nansheng-dushixiuxian-wanjie-1'>武侠仙侠</a>
</p> </p>
<p> <p>
<span>最新章节:</span> <span>最新章节:</span>
<a class="blue" href="/book/12481/09f0ecc3793df.html">432 番外三</a> <a class="blue" href='/pc/xiaoshuo/name-1/zhang-1'>432 番外三</a>
<a class="red" href="/book/12481/69e146769967b.html">继续阅读</a> <a class="red" href='/pc/xiaoshuo/name-1/zhang-1'>继续阅读</a>
</p> </p>
</div> </div>
</div> </div>
@@ -54,7 +54,7 @@
</dl> </dl>
<a class="all" href="/user/recentread/index.html" target="_blank"> <a class="all" href='/pc/xiaoshuo/xiaos-pin-yin-1/mulu/zheng' target="_blank">
查看全部<em class="iconfont"></em> 查看全部<em class="iconfont"></em>
</a> </a>
</div> </div>
@@ -63,39 +63,39 @@
<cite>快速导航</cite> <cite>快速导航</cite>
<div class="dropdown type-list"> <div class="dropdown type-list">
<div class="type-box"> <div class="type-box">
<h3><a href="/pc/index.html" target="_blank">首页</a></h3> <h3><a href="/pc/" target="_blank">首页</a></h3>
</div> </div>
<div class="type-box"> <div class="type-box">
<h3><a href="/lists/4.html" target="_blank">男生</a></h3> <h3><a href='/pc/shuku/nansheng-dushixiuxian-wanjie-1' target="_blank">男生</a></h3>
<a href="/lists/18.html" target="_blank">奇幻玄幻</a> <a href='/pc/shuku/nansheng-dushixiuxian-wanjie-1' target="_blank">奇幻玄幻</a>
<a href="/lists/19.html" target="_blank">武侠仙侠</a> <a href='/pc/shuku/nansheng-dushixiuxian-wanjie-1' target="_blank">武侠仙侠</a>
<a href="/lists/20.html" target="_blank">历史军事</a> <a href='/pc/shuku/nansheng-dushixiuxian-wanjie-1' target="_blank">历史军事</a>
<a href="/lists/21.html" target="_blank">都市娱乐</a> <a href='/pc/shuku/nansheng-dushixiuxian-wanjie-1' target="_blank">都市娱乐</a>
<a href="/lists/22.html" target="_blank">科幻末日</a> <a href='/pc/shuku/nansheng-dushixiuxian-wanjie-1' target="_blank">科幻末日</a>
<a href="/lists/23.html" target="_blank">悬疑灵异</a> <a href='/pc/shuku/nansheng-dushixiuxian-wanjie-1' target="_blank">悬疑灵异</a>
<a href="/lists/34.html" target="_blank">游戏竞技</a> <a href='/pc/shuku/nansheng-dushixiuxian-wanjie-1' target="_blank">游戏竞技</a>
<a href="/lists/35.html" target="_blank">其他</a> <a href='/pc/shuku/nansheng-dushixiuxian-wanjie-1' target="_blank">其他</a>
</div> </div>
<div class="type-box"> <div class="type-box">
<h3><a href="/lists/8.html" target="_blank">女生</a></h3> <h3><a href="/pc/shuku/nvsheng-dushixiuxian-wanjie-1" target="_blank">女生</a></h3>
<a href="/lists/25.html" target="_blank">古装言情</a> <a href="/pc/shuku/nvsheng-dushixiuxian-wanjie-1" target="_blank">古装言情</a>
<a href="/lists/26.html" target="_blank">都市言情</a> <a href='/pc/shuku/nvsheng-dushixiuxian-wanjie-1' target="_blank">都市言情</a>
<a href="/lists/27.html" target="_blank">浪漫青春</a> <a href='/pc/shuku/nvsheng-dushixiuxian-wanjie-1' target="_blank">浪漫青春</a>
<a href="/lists/28.html" target="_blank">幻想言情</a> <a href='/pc/shuku/nvsheng-dushixiuxian-wanjie-1' target="_blank">幻想言情</a>
<a href="/lists/37.html" target="_blank">科幻空间</a> <a href='/pc/shuku/nvsheng-dushixiuxian-wanjie-1' target="_blank">科幻空间</a>
<a href="/lists/38.html" target="_blank">灵异悬疑</a> <a href='/pc/shuku/nvsheng-dushixiuxian-wanjie-1' target="_blank">灵异悬疑</a>
<a href="/lists/39.html" target="_blank">同人衍生</a> <a href='/pc/shuku/nvsheng-dushixiuxian-wanjie-1' target="_blank">同人衍生</a>
<a href="/lists/40.html" target="_blank">耽美百合</a> <a href='/pc/shuku/nvsheng-dushixiuxian-wanjie-1' target="_blank">耽美百合</a>
</div> </div>
<div class="type-box"> <div class="type-box">
<h3><a href="/pc/shuku.html" target="_blank">书库</a></h3> <h3><a href="/pc/shuku/all" target="_blank">书库</a></h3>
</div> </div>
<div class="type-box"> <div class="type-box">
<h3><a href="/pc/rank.html" target="_blank">排行</a></h3> <h3><a href="/pc/paihang/all" target="_blank">排行</a></h3>
</div> </div>
<div class="type-box"> <!-- <div class="type-box">
<h3><a href="/pc/seo.html" target="_blank">文章</a></h3> <h3><a href="/pc/seo.html" target="_blank">文章</a></h3>
</div> </div> -->
</div> </div>
</li> </li>
</ul> </ul>
@@ -114,10 +114,10 @@
<li class="line"></li> <li class="line"></li>
<li class="sign-in"> <li class="sign-in">
<img src="/template/kuangyu/reader/web/images/user-icon.png" class="headPortrait"> <img src="/template/kuangyu/reader/web/images/user-icon.png" class="headPortrait">
<a href="/user/index/index.html">123456</a> <a href="/pc/user">123456</a>
<div class="dropdown"> <div class="dropdown">
<!-- <a href="/user/index/index.html">个人中心</a> --> <!-- <a href="/user/index/index.html">个人中心</a> -->
<a href="/user/bookshelf/index.html">我的书架</a> <a href="/pc/bookshelf">我的书架</a>
<!-- <a href="/user/recentread/index.html">阅读记录</a> --> <!-- <a href="/user/recentread/index.html">阅读记录</a> -->
<!-- <a href="/user/user/logout.html" class="exit">退出</a> --> <!-- <a href="/user/user/logout.html" class="exit">退出</a> -->
</div> </div>
@@ -129,11 +129,11 @@
<div class="crumbs-nav"> <div class="crumbs-nav">
<a href="/" target="_blank">首页</a> <a href="/" target="_blank">首页</a>
<em class="iconfont"></em> <em class="iconfont"></em>
<a href="/lists/8.html" target="_blank">女生</a> <a href='/pc/shuku/nvsheng-dushixiuxian-wanjie-1' target="_blank">女生</a>
<em class="iconfont"></em> <em class="iconfont"></em>
<a href="/lists/40.html" target="_blank">耽美百合</a> <a href='/pc/shuku/nvsheng-dushixiuxian-wanjie-1' target="_blank">耽美百合</a>
<em class="iconfont"></em> <em class="iconfont"></em>
<a href="/novel/332.html" target="_blank">我真是一条龙</a> <a href='/pc/xiaoshuo/name-1' target="_blank">我真是一条龙</a>
</div> </div>
<div class="read-main-wrap font-family01" style="font-size:18px" id="j_readMainWrap"> <div class="read-main-wrap font-family01" style="font-size:18px" id="j_readMainWrap">
<div id="j_chapterBox"> <div id="j_chapterBox">
@@ -145,7 +145,7 @@
<h3 class="j_chapterName">01 天龙问世</h3> <h3 class="j_chapterName">01 天龙问世</h3>
<div class="text-info cf"> <div class="text-info cf">
<div class="info fl"> <div class="info fl">
<a href="/novel/332.html" target="_blank"> <em class="iconfont"></em> 我真是一条龙</a> <a href='/pc/xiaoshuo/name-1' target="_blank"> <em class="iconfont"></em> 我真是一条龙</a>
<a href="/search/%E5%85%94%E5%AD%90%E5%BE%88%E6%B7%A1%E5%AE%9A.html" <a href="/search/%E5%85%94%E5%AD%90%E5%BE%88%E6%B7%A1%E5%AE%9A.html"
target="_blank"> <em class="iconfont"></em> 兔子很淡定</a> target="_blank"> <em class="iconfont"></em> 兔子很淡定</a>
<i><em class="iconfont"></em><span class="j_chapterWordCut">2000</span></i> <i><em class="iconfont"></em><span class="j_chapterWordCut">2000</span></i>
@@ -176,7 +176,7 @@
<div class="chapter-control dib-wrap"> <div class="chapter-control dib-wrap">
<a id="j_chapterPrev" href="javascript:void(0);">上一章</a> <a id="j_chapterPrev" href="javascript:void(0);">上一章</a>
<span>|</span> <span>|</span>
<a id="j_chapterNext" href="/book/12538/486ef2abee55d.html">下一章</a> <a id="j_chapterNext" href='/pc/xiaoshuo/name-1/zhang-1'>下一章</a>
</div> </div>
</div> </div>
</div> </div>
@@ -204,7 +204,7 @@
</a> </a>
</dd> </dd>
<dd> <dd>
<a href="/pc/info.html" target="_blank"> <a href='/pc/xiaoshuo/name-1' target="_blank">
<i><em class="iconfont"></em><span>详情</span></i> <i><em class="iconfont"></em><span>详情</span></i>
</a> </a>
</dd> </dd>

View File

@@ -15,13 +15,13 @@
<meta itemprop="position" content="1" /> <meta itemprop="position" content="1" />
</li> </li>
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a href="/xiaoshuo" itemprop="item"> <a href="/pc/shuku/all" itemprop="item">
<span itemprop="name">小说</span> <span itemprop="name">书库</span>
</a> </a>
<meta itemprop="position" content="2" /> <meta itemprop="position" content="2" />
</li> </li>
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a href="/xiaoshuo/doupo-123/mulu/1" itemprop="item"> <a href="/pc/book-name-1" itemprop="item">
<span itemprop="name">斗破苍穹</span> <span itemprop="name">斗破苍穹</span>
</a> </a>
<meta itemprop="position" content="3" /> <meta itemprop="position" content="3" />
@@ -36,7 +36,7 @@
<div class="con_box"> <div class="con_box">
<div class="top"> <div class="top">
<h3><a href="/pc/novel/334.html" target="_blank">落魄千金美食发家日常</a></h3> <h3><a href='/pc/xiaoshuo/name-1' target="_blank">落魄千金美食发家日常</a></h3>
<p>作者:鱼昆子</p> <p>作者:鱼昆子</p>
</div> </div>
<div class="fenlei"> <div class="fenlei">

View File

@@ -15,18 +15,17 @@
<meta itemprop="position" content="1" /> <meta itemprop="position" content="1" />
</li> </li>
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a href="/xiaoshuo" itemprop="item"> <a href="/pc/shuku/all" itemprop="item">
<span itemprop="name">小说</span> <span itemprop="name">书库</span>
</a> </a>
<meta itemprop="position" content="2" /> <meta itemprop="position" content="2" />
</li> </li>
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a href="/xiaoshuo/doupo-123/mulu/1" itemprop="item"> <a href="/pc/book-name-1" itemprop="item">
<span itemprop="name">斗破苍穹</span> <span itemprop="name">斗破苍穹</span>
</a> </a>
<meta itemprop="position" content="3" /> <meta itemprop="position" content="3" />
</li> </li>
</ol> </ol>
</nav> </nav>
@@ -34,7 +33,7 @@
<div class="info"> <div class="info">
<div class="info_box"> <div class="info_box">
<div class="info_L"> <div class="info_L">
<a href="/pc/novel/332.html" title="我真是一条龙" class="book_cov"> <a href='/pc/xiaoshuo/name-1' title="我真是一条龙" class="book_cov">
<img src="https://www.630zw.org/img/176943.jpg" <img src="https://www.630zw.org/img/176943.jpg"
data-src="https://www.630zw.org/img/176943.jpg" data-src="https://www.630zw.org/img/176943.jpg"
class="lazyload_book_cover" alt="封面"> class="lazyload_book_cover" alt="封面">
@@ -50,7 +49,7 @@
</div> </div>
<div class="info_C book_inf"> <div class="info_C book_inf">
<div class="c01"> <div class="c01">
<h3><a href="/pc/novel/332.html">我真是一条龙</a></h3> <h3><a href='/pc/xiaoshuo/name-1'>我真是一条龙</a></h3>
<span id="mod_book_star">0分</span> <span id="mod_book_star">0分</span>
</div> </div>
<p class="c02"> <p class="c02">
@@ -123,7 +122,7 @@
</div> </div>
<div class="zj_con"> <div class="zj_con">
<p> <p>
<a href="/xiaoshuo/小说拼音-intNovelId/zhang-intChapterSort" target="_blank" class="zj">老读者必看公告!!!</a> <a href="/pc/xiaoshuo/name-1/zhang-1" target="_blank" class="zj">老读者必看公告!!!</a>
<span class="time">3天前</span> <span class="time">3天前</span>
</p> </p>
<p class="zw" style="max-height: 98px; overflow: hidden;"></p> <p class="zw" style="max-height: 98px; overflow: hidden;"></p>
@@ -174,9 +173,9 @@
<ul class="info2_C"> <ul class="info2_C">
{foreach $arrRecommendNovel as $key=>$Novel} {foreach $arrRecommendNovel as $key=>$Novel}
<li> <li>
<h3><a href="/pc/novel/332.html" title="我真是一条龙" target="_blank">我真是一条龙</a></h3> <h3><a href='/pc/xiaoshuo/name-1' title="我真是一条龙" target="_blank">我真是一条龙</a></h3>
<div> <div>
<a href="/pc/novel/332.html" title="我真是一条龙" target="_blank" class="book_cov"> <a href='/pc/xiaoshuo/name-1' title="我真是一条龙" target="_blank" class="book_cov">
<img src="/template/kuangyu/home/bai_web/images/default.png" <img src="/template/kuangyu/home/bai_web/images/default.png"
data-src="https://www.630zw.org/img/176943.jpg" data-src="https://www.630zw.org/img/176943.jpg"
class="lazyload_book_cover" alt="我真是一条龙"> class="lazyload_book_cover" alt="我真是一条龙">

View File

@@ -6,6 +6,22 @@
{block name="main"} {block name="main"}
<div class="content content_back"> <div class="content content_back">
<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="/pc/" 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">
<a href="/pc/paihang/all" itemprop="item">
<span itemprop="name">排行榜</span>
</a>
</li>
</ol>
</nav>
<!--大标题 开始--> <!--大标题 开始-->
<!-- <div class="rank_bt"> <!-- <div class="rank_bt">
<a href="/pc/rank.html" class="all_btn">完整榜单</a> <a href="/pc/rank.html" class="all_btn">完整榜单</a>

View File

@@ -24,13 +24,13 @@
<ul> <ul>
{foreach $arrSearchNovel as $key=>$Novel} {foreach $arrSearchNovel as $key=>$Novel}
<li> <li>
<a href="/novel/202.html" target="_blank" class="book_cov" title="1秒1技能点你说我凡阶天赋修炼慢"> <a href='/pc/xiaoshuo/name-1' target="_blank" class="book_cov" title="1秒1技能点你说我凡阶天赋修炼慢">
<img src="/template/kuangyu/home/bai_web/images/default.png" <img src="/template/kuangyu/home/bai_web/images/default.png"
data-src="https://www.630zw.org/img/176943.jpg" data-src="https://www.630zw.org/img/176943.jpg"
class="lazyload_book_cover" alt="1秒1技能点你说我凡阶天赋修炼慢"> class="lazyload_book_cover" alt="1秒1技能点你说我凡阶天赋修炼慢">
</a> </a>
<div class="book_inf"> <div class="book_inf">
<h3><a href="/novel/202.html" title="1秒1技能点你说我凡阶天赋修炼慢" target="_blank"> <h3><a href='/pc/xiaoshuo/name-1' title="1秒1技能点你说我凡阶天赋修炼慢" target="_blank">
<font color="red">1</font><font color="red">1</font>技能点,你说我凡阶天赋修炼慢? <font color="red">1</font><font color="red">1</font>技能点,你说我凡阶天赋修炼慢?
</a></h3> </a></h3>
<p> <p>
@@ -44,7 +44,7 @@
<i>标签:</i> <i>标签:</i>
<i></i> <i></i>
</p> </p>
<p><b>最近更新:</b><a href="/book/12408/1dc0735e0163c.html" title="第190章 武破虚空,新的开始" <p><b>最近更新:</b><a href='/pc/xiaoshuo/name-1/zhang-1' title="第190章 武破虚空,新的开始"
target="_blank">第190章 武破虚空,新的开始</a></p> target="_blank">第190章 武破虚空,新的开始</a></p>
<p class="int"> 深海中潜藏的巨兽掀起灭世海啸!山间凶兽朝着钢铁巨城露出凶猛的獠牙。 即将参加高考的武道学生徐天觉醒深红系统。却没想觉醒日被未婚妻强行退婚,面对众人诋毁,未婚妻的鄙视。 <p class="int"> 深海中潜藏的巨兽掀起灭世海啸!山间凶兽朝着钢铁巨城露出凶猛的獠牙。 即将参加高考的武道学生徐天觉醒深红系统。却没想觉醒日被未婚妻强行退婚,面对众人诋毁,未婚妻的鄙视。
地阶天赋又如何,深红,给我加点! 地阶天赋又如何,深红,给我加点!
@@ -52,7 +52,7 @@
</div> </div>
<div class="right"> <div class="right">
<span>更新时间2025-03-20 23:57</span> <span>更新时间2025-03-20 23:57</span>
<a href="/novel/202.html" target="_blank" class="read_btn btn">立即阅读</a> <a href='/pc/xiaoshuo/name-1' target="_blank" class="read_btn btn">立即阅读</a>
</div> </div>
</li> </li>
{/foreach} </ul> {/foreach} </ul>

View File

@@ -13,16 +13,16 @@
<div class="myMod" id="myMod"> <div class="myMod" id="myMod">
<div class="i-title"> <div class="i-title">
我的书架 我的书架
<a href="/user/bookshelf/index.html" class="clickMore" target="_blank">查看更多&gt;&gt;</a> <a href="/pc/bookshelf" class="clickMore" target="_blank">查看更多&gt;&gt;</a>
</div> </div>
<ul class="bookUl"> <ul class="bookUl">
{foreach $arrNewsNovel as $key=>$Novel} {foreach $arrNewsNovel as $key=>$Novel}
<li> <li>
<a href="/novel/332.html" target="_blank" alt="我真是一条龙" title="我真是一条龙"> <a href='/pc/xiaoshuo/name-1' target="_blank" alt="我真是一条龙" title="我真是一条龙">
<img src="https://www.630zw.org/img/176943.jpg"> <img src="https://www.630zw.org/img/176943.jpg">
</a> </a>
<p> <p>
<a href="/novel/332.html" target="_blank"> <a href='/pc/xiaoshuo/name-1' target="_blank">
<span class="bookName">我真是一条龙</span> <span class="bookName">我真是一条龙</span>
</a> </a>
<span class="bookStatus"> <span class="bookStatus">
@@ -32,12 +32,12 @@
<em class="none">兔子很淡定</em> <em class="none">兔子很淡定</em>
</a> </a>
</b> </b>
<b class="authorSt chapterSt"><a href="/book/12538/cd6049204b715.html" target="_blank"> <b class="authorSt chapterSt"><a href='/pc/xiaoshuo/name-1/zhang-1' target="_blank">
<em class="ct">最新章节:老读者必看公告!!!</em> <em class="ct">最新章节:老读者必看公告!!!</em>
</a> </a>
<em class="time">3天前更新</em></b> <em class="time">3天前更新</em></b>
</span> </span>
<a href="/book/12538/4b2d5aab58d71.html" target="_blank"> <i class="goon">阅读</i> <a href='/pc/xiaoshuo/name-1/zhang-1' target="_blank"> <i class="goon">阅读</i>
</a> </a>
</p> </p>
</li> </li>
@@ -48,16 +48,16 @@
<div class="myMod"> <div class="myMod">
<div class="i-title"> <div class="i-title">
最近阅读 最近阅读
<a href="/user/recentread/index.html" class="clickMore" target="_blank">查看更多&gt;&gt;</a> <a href="/pc/history" class="clickMore" target="_blank">查看更多&gt;&gt;</a>
</div> </div>
<ul class="bookUl"> <ul class="bookUl">
{foreach $arrNewsNovel as $key=>$Novel} {foreach $arrNewsNovel as $key=>$Novel}
<li> <li>
<a href="/novel/275.html" target="_blank" alt="捻转步舞曲[花滑]" title="捻转步舞曲[花滑]"> <a href='/pc/xiaoshuo/name-1' target="_blank" alt="捻转步舞曲[花滑]" title="捻转步舞曲[花滑]">
<img src="https://www.630zw.org/img/176943.jpg"> <img src="https://www.630zw.org/img/176943.jpg">
</a> </a>
<p> <p>
<a href="/novel/275.html" target="_blank"> <a href='/pc/xiaoshuo/name-1' target="_blank">
<span class="bookName">捻转步舞曲[花滑]</span> <span class="bookName">捻转步舞曲[花滑]</span>
</a> </a>
<span class="bookStatus"> <span class="bookStatus">
@@ -71,7 +71,7 @@
</a> </a>
<em class="time">3天前更新</em></b> <em class="time">3天前更新</em></b>
</span> </span>
<a href="/book/12481/69e146769967b.html" target="_blank"> <i class="goon">继续阅读</i> <a href='/pc/xiaoshuo/name-1/zhang-1' target="_blank"> <i class="goon">继续阅读</i>
</a> </a>
</p> </p>
</li> </li>
@@ -94,7 +94,7 @@
<ul class="hotBookBd " style="display: none;"> <ul class="hotBookBd " style="display: none;">
{foreach $arrNewsNovel as $key=>$Novel} {foreach $arrNewsNovel as $key=>$Novel}
<li> <li>
<a href="/novel/332.html" target="_blank" alt="我真是一条龙" title="我真是一条龙"> <a href='/pc/xiaoshuo/name-1' target="_blank" alt="我真是一条龙" title="我真是一条龙">
<img src="https://www.630zw.org/img/176943.jpg"> <img src="https://www.630zw.org/img/176943.jpg">
<span class="bookName">我真是一条龙</span> <span class="bookName">我真是一条龙</span>
<span class="bookAuthor">兔子很淡定</span> <span class="bookAuthor">兔子很淡定</span>
@@ -115,11 +115,11 @@
<ul> <ul>
{foreach $arrNewsNovel as $key=>$Novel} {foreach $arrNewsNovel as $key=>$Novel}
<li> <li>
<a href="/novel/332.html" target="_blank" alt="我真是一条龙" title="我真是一条龙"> <a href='/pc/xiaoshuo/name-1' target="_blank" alt="我真是一条龙" title="我真是一条龙">
<img src="https://www.630zw.org/img/176943.jpg"> <img src="https://www.630zw.org/img/176943.jpg">
</a> </a>
<p> <p>
<a href="/novel/332.html" target="_blank"> <a href='/pc/xiaoshuo/name-1' target="_blank">
<span class="bookName other">我真是一条龙</span> <span class="bookName other">我真是一条龙</span>
</a> </a>
<a href="/search/%E5%85%94%E5%AD%90%E5%BE%88%E6%B7%A1%E5%AE%9A.html" target="_blank"> <a href="/search/%E5%85%94%E5%AD%90%E5%BE%88%E6%B7%A1%E5%AE%9A.html" target="_blank">

View File

@@ -23,7 +23,12 @@
<div class="book_inf" id="mod_index_lb_nv_txt"> <div class="book_inf" id="mod_index_lb_nv_txt">
{volist name="arrRecommendSerializationNovel" id="Novel" key="key"} {volist name="arrRecommendSerializationNovel" id="Novel" key="key"}
{if $key == 1} {if $key == 1}
<h3><a href="/novel/334.html" title="{$Novel.og_novel_book_name ?? ''}" target="_blank" class="zdz">{$Novel.og_novel_book_name ?? ''}</a></h3> <h3>
<a href='/pc{site:nurl n_id="$Novel->n_id" n_py="$Novel->og_novel_pin_yin"/}' title="{$Novel.og_novel_book_name ?? ''}"
target="_blank" class="zdz">
{$Novel.og_novel_book_name ?? ''}
</a>
</h3>
<p class="int"> {$Novel.og_description ?? ''}</p> <p class="int"> {$Novel.og_description ?? ''}</p>
{/if} {/if}
{/volist} {/volist}
@@ -108,7 +113,7 @@
{/if} {/if}
{/foreach} {/foreach}
</ol> </ol>
<span class="more"><a href="/pc/rank.html" target="_blank"><s></s><i>查看更多</i><s></s></a></span> <span class="more"><a href="/pc/paihang" target="_blank"><s></s><i>查看更多</i><s></s></a></span>
</div> </div>
<div class="list_wrap" style="display: none;"> <div class="list_wrap" style="display: none;">
<ol class="list" mod="rank_data_list"> <ol class="list" mod="rank_data_list">
@@ -121,7 +126,7 @@
{/if} {/if}
{/foreach} {/foreach}
</ol> </ol>
<span class="more"><a href="/pc/rank.html" target="_blank"><s></s><i>查看更多</i><s></s></a></span> <span class="more"><a href="/pc/paihang" target="_blank"><s></s><i>查看更多</i><s></s></a></span>
</div> </div>
<div class="list_wrap" style="display: none;"> <div class="list_wrap" style="display: none;">
<ol class="list" mod="rank_data_list"> <ol class="list" mod="rank_data_list">
@@ -134,7 +139,7 @@
{/if} {/if}
{/foreach} {/foreach}
</ol> </ol>
<span class="more"><a href="/pc/rank.html" target="_blank"><s></s><i>查看更多</i><s></s></a></span> <span class="more"><a href="/pc/paihang" target="_blank"><s></s><i>查看更多</i><s></s></a></span>
</div> </div>
</div> </div>
</div> </div>
@@ -186,7 +191,7 @@
{/if} {/if}
{/volist} {/volist}
</ol> </ol>
<span class="more"><a href="/pc/rank.html" target="_blank"><s></s><i>查看更多</i><s></s></a></span> <span class="more"><a href="/pc/paihang" target="_blank"><s></s><i>查看更多</i><s></s></a></span>
</div> </div>
<div class="list_wrap" style="display: none;"> <div class="list_wrap" style="display: none;">
<ol class="list" mod="rank_data_list"> <ol class="list" mod="rank_data_list">
@@ -199,7 +204,7 @@
{/if} {/if}
{/volist} {/volist}
</ol> </ol>
<span class="more"><a href="/pc/rank.html" target="_blank"><s></s><i>查看更多</i><s></s></a></span> <span class="more"><a href="/pc/paihang" target="_blank"><s></s><i>查看更多</i><s></s></a></span>
</div> </div>
<div class="list_wrap" style="display: none;"> <div class="list_wrap" style="display: none;">
<ol class="list" mod="rank_data_list"> <ol class="list" mod="rank_data_list">
@@ -212,7 +217,7 @@
{/if} {/if}
{/volist} {/volist}
</ol> </ol>
<span class="more"><a href="/pc/rank.html" target="_blank"><s></s><i>查看更多</i><s></s></a></span> <span class="more"><a href="/pc/paihang" target="_blank"><s></s><i>查看更多</i><s></s></a></span>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -71,9 +71,9 @@
<a href="/paihang/all"> <a href="/paihang/all">
<span>排行</span> <span>排行</span>
</a> </a>
<a href="/article/list"> <!-- <a href="/article/list">
<span>文章</span> <span>文章</span>
</a> </a> -->
</div> </div>
<div class="menu-btn"> <div class="menu-btn">

View File

@@ -39,9 +39,9 @@
<li class=' {eq name="strPageCode" value="rank"}on {/eq}'> <li class=' {eq name="strPageCode" value="rank"}on {/eq}'>
<a href="/pc/paihang/all" target="_self" title="排行">排行</a> <a href="/pc/paihang/all" target="_self" title="排行">排行</a>
</li> </li>
<li class=' {eq name="strPageCode" value="article"}on {/eq}'> <!-- <li class=' {eq name="strPageCode" value="article"}on {/eq}'>
<a href="/pc/article/list" target="_self" title="文章">文章</a> <a href="/pc/article/list" target="_self" title="文章">文章</a>
</li> </li> -->
</ul> </ul>
<div class="headWrap_r"> <div class="headWrap_r">
<div class="search long" id="mod_top_search"> <div class="search long" id="mod_top_search">
@@ -52,7 +52,7 @@
<a href="" class="search_btn"><s></s></a> <a href="" class="search_btn"><s></s></a>
</div> </div>
<div class="login"> <div class="login">
<span class="login_before"><a href="/pc/user.html"><s></s><i>个人中心</i></a></span> <span class="login_before"><a href="/pc/user"><s></s><i>个人中心</i></a></span>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -48,3 +48,4 @@ pc-首页
<body> 后面 随机15-30个标签 <body> 后面 随机15-30个标签
</body> 前面面 随机15-30个标签 </body> 前面面 随机15-30个标签
body 中间 选择 5-10行 ,a 标签前面 生成一个干扰码 body 中间 选择 5-10行 ,a 标签前面 生成一个干扰码
5.文章 板块