87 lines
3.5 KiB
HTML
87 lines
3.5 KiB
HTML
{extend name="basePc" /}
|
|
{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="{Request->DomainModel->d_domain}" />
|
|
<meta property="og:type" content="article" />
|
|
<!-- 结构化数据 -->
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "NewsArticle",
|
|
"headline": "{$strTitle??''}",
|
|
"description": "{$strDescription??''}",
|
|
"datePublished": "2025-04-05"
|
|
}
|
|
</script>
|
|
{block name="head-css"}
|
|
<link rel="canonical" href='{Request->DomainModel->d_domain}/xiaoshuo/$arrNovel.og_novel_pin_yin-$arrNovel.n_id/mulu/zheng" /}'>
|
|
{/block}
|
|
{block name="head-js"}{/block}
|
|
|
|
|
|
{block name="main"}
|
|
|
|
<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="/" 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/{arrNovel.category_pinyin}/all/page1" itemprop="item">
|
|
<span itemprop="name">{$arrNovel.og_novel_category}</span>
|
|
</a>
|
|
<meta itemprop="position" content="2" />
|
|
</li>
|
|
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
|
<a href='/pc{site:nurl n_id="$arrNovel[n_id]" n_py="$arrNovel[og_novel_pin_yin]" /}' itemprop="item">
|
|
<span itemprop="name">{$arrNovel['og_novel_book_name']}</span>
|
|
</a>
|
|
<meta itemprop="position" content="3" />
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
|
<span itemprop="name">目录</span>
|
|
<meta itemprop="position" content="4" />
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<div class="con_box">
|
|
|
|
<div class="top">
|
|
<h3><a href='/pc{site:nurl n_id="$arrNovel[n_id]" n_py="$arrNovel[og_novel_pin_yin]" /}' target="_blank">{$arrNovel['og_novel_book_name']}</a></h3>
|
|
<p>作者:{$arrNovel.og_novel_author}</p>
|
|
</div>
|
|
<div class="fenlei">
|
|
|
|
<div class="tit" btn="toggle_chapter_list"><span></span>章节列表</div>
|
|
|
|
<!-- 目录下拉分页-->
|
|
{include file="Pc/Public/allChapterPage" /}
|
|
|
|
<div class="fL_con">
|
|
<ul>
|
|
{foreach $arrPage.data as $Chapter}
|
|
<li>
|
|
<a href="/pc/xiaoshuo/{$arrNovel.og_novel_pin_yin}-{$arrNovel.n_id}/zhang-{$Chapter.c_sort_num}" target="_blank">{$Chapter.name}</a>
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- 目录下拉分页-->
|
|
{include file="Pc/Public/allChapterPage" /}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/block}
|
|
|
|
{block name="customize"} {/block} |