96 lines
3.2 KiB
HTML
96 lines
3.2 KiB
HTML
{extend name="baseH5" /}
|
|
{block name="title"}{$strTitle??''}{/block}
|
|
{block name="keywords"}{$strKeywords??''}{/block}
|
|
{block name="description"}{$strDescription??''}{/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}{$strPageCode == 'boys' ? 'nansheng-xiaoshuo' : 'nvsheng-xiaoshuo' }" />
|
|
<meta property="og:type" content="book" />
|
|
<!-- 结构化数据 -->
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://{$DomainModel->d_domain}{$strPageCode == 'boys' ? 'nansheng-xiaoshuo' : 'nvsheng-xiaoshuo' }",
|
|
"@type": "book",
|
|
"headline": "{$strTitle??''}",
|
|
"description": "{$strDescription??''}",
|
|
"datePublished": "{:date('Y-m-d')}"
|
|
}
|
|
</script>
|
|
{/block}
|
|
{block name="head-js"}{/block}
|
|
|
|
{block name="logo-html"}
|
|
<h1 class="logo">
|
|
<a href="/">狂雨小说</a>
|
|
</h1>
|
|
{/block}
|
|
|
|
{block name="main"}
|
|
<!--wrap-->
|
|
<div class="wrap">
|
|
|
|
<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">
|
|
{eq name="strPageCode" value="boys"}
|
|
<a href="/nansheng-xiaoshuo" itemprop="item">
|
|
<span itemprop="name">男生</span>
|
|
</a>
|
|
{else}
|
|
<a href="/nvsheng-xiaoshuo" itemprop="item">
|
|
<span itemprop="name">女生</span>
|
|
</a>
|
|
{/eq}
|
|
<meta itemprop="position" content="2" />
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
|
|
<div class="mod hot-book">
|
|
<div class="mod-head">
|
|
<h3>热门推荐</h3>
|
|
</div>
|
|
<div class="book-slide">
|
|
<ul class="clearfix">
|
|
{volist name="arrRecommendSerializationNovel" id="Novel" key="key"}
|
|
{include file="Public/novelListS" start="0"/}
|
|
{/volist}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="mod hot-book">
|
|
<div class="mod-head">
|
|
<h3>完结推荐</h3>
|
|
</div>
|
|
<div class="book-slide">
|
|
<ul class="clearfix">
|
|
{volist name="arrRecommendEndNovel" id="Novel" key="key"}
|
|
{include file="Public/novelListS" start="13"/}
|
|
{/volist}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="mod new-book">
|
|
<div class="mod-head">
|
|
<h3>最近更新</h3>
|
|
</div>
|
|
<div class="book-list">
|
|
<ul class="clearfix">
|
|
{volist name="arrNewsUpdateNovel" id="Novel" key="key"}
|
|
{include file="Public/novelListH" start="21"/}
|
|
{/volist}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{/block} {block name="customize"} {/block} |