增加小说模板
This commit is contained in:
129
code/app/home/view/kuangyu/Novel/getNovelRank.html
Normal file
129
code/app/home/view/kuangyu/Novel/getNovelRank.html
Normal file
@@ -0,0 +1,129 @@
|
||||
{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 class="wrap">
|
||||
|
||||
<!-- hot-book -->
|
||||
<div class="mod mod-top-index">
|
||||
<div class="mod-head">
|
||||
<h2>日点击榜</h2>
|
||||
</div>
|
||||
<div class="top-index">
|
||||
<ul class="clearfix">
|
||||
{foreach $arrDayRankNovel as $key => $vo}
|
||||
{if $key == 0}
|
||||
{include file="Public/novelListH" /}
|
||||
{/if}
|
||||
{if $key >= 1}
|
||||
{include file="Public/novelListRank" /}
|
||||
{/if}
|
||||
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<!-- hot-book -->
|
||||
<div class="mod mod-top-index">
|
||||
<div class="mod-head">
|
||||
<h2>周点击榜</h2>
|
||||
</div>
|
||||
<div class="top-index">
|
||||
<ul class="clearfix">
|
||||
{foreach $arrWeekRankNovel as $key => $vo}
|
||||
{if $key == 0}
|
||||
{include file="Public/novelListH" /}
|
||||
{/if}
|
||||
{if $key >= 1}
|
||||
{include file="Public/novelListRank" /}
|
||||
{/if}
|
||||
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<!-- hot-book -->
|
||||
<div class="mod mod-top-index">
|
||||
<div class="mod-head">
|
||||
<h2>月点击榜</h2>
|
||||
</div>
|
||||
<div class="top-index">
|
||||
<ul class="clearfix">
|
||||
{foreach $arrMoonRankNovel as $key => $vo}
|
||||
{if $key == 0}
|
||||
{include file="Public/novelListH" /}
|
||||
{/if}
|
||||
{if $key >= 1}
|
||||
{include file="Public/novelListRank" /}
|
||||
{/if}
|
||||
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mod mod-top-index">
|
||||
<div class="mod-head">
|
||||
<h2>总点击榜</h2>
|
||||
</div>
|
||||
<div class="top-index">
|
||||
<ul class="clearfix">
|
||||
{foreach $arrTotalRankNovel as $key => $vo}
|
||||
{if $key == 0}
|
||||
{include file="Public/novelListH" /}
|
||||
{/if}
|
||||
{if $key >= 1}
|
||||
{include file="Public/novelListRank" /}
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mod mod-top-index">
|
||||
<div class="mod-head">
|
||||
<h2>新书榜</h2>
|
||||
</div>
|
||||
<div class="top-index">
|
||||
<ul class="clearfix">
|
||||
{foreach $arrNewsNovelRankNovel as $key => $vo}
|
||||
{if $key == 0}
|
||||
{include file="Public/novelListH" /}
|
||||
{/if}
|
||||
{if $key >= 1}
|
||||
{include file="Public/novelListRank" /}
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mod mod-top-index">
|
||||
<div class="mod-head">
|
||||
<h2>完结榜</h2>
|
||||
</div>
|
||||
<div class="top-index">
|
||||
<ul class="clearfix">
|
||||
{foreach $arrEdnNovelRankNovel as $key => $vo}
|
||||
{if $key == 0}
|
||||
{include file="Public/novelListH" /}
|
||||
{/if}
|
||||
{if $key >= 1}
|
||||
{include file="Public/novelListRank" /}
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{block name="customize"} {/block}
|
||||
Reference in New Issue
Block a user