This commit is contained in:
make
2025-04-14 14:45:51 +08:00
parent 899efcf4a2
commit 788d857607
18 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
{extend name="basePcUser" /}
{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}{$strHistoryUrlTemp}" />
<meta property="og:type" content="article" />
<!-- 结构化数据 -->
<script type="application/ld+json">
{
"@context": "https://{$DomainModel->d_domain}{$strHistoryUrlTemp}",
"@type": "article",
"headline": "{$strTitle??''}",
"description": "{$strDescription??''}",
"datePublished": "{:date('Y-m-d')}"
}
</script>
{block name="head-js"}{/block}
{block name="main"}
{$arrGRM[0]|raw}
<div class="i-right">
<div class="i-title" style="padding-left:30px;">
最近阅读
</div>
{$arrGRM[1]|raw}
<div class="bookshelfMod" id="bookshelfMod">
<table>
<tbody>
<tr class="head" id="bookshelfMod-head">
<td>封面</td>
<td class="t2">书名</td>
<td class="t3">阅读章节</td>
<td class="t4">作者</td>
<td class="t5">更新时间</td>
<td class="t6">状态</td>
<td class="t7">操作</td>
</tr>
</tbody>
</table>
{$arrGRM[2]|raw}
<div class="page-box">
<div class="page-content">
<div class="ui-pagination">
</div>
</div>
</div>
</div>
</div>
{$arrGRM[3]|raw}
<script>
const strNovelUrlTemp = `{$strNovelUrlTemp}`;
const strNovelChapterUrlTemp = `{$strNovelChapterUrlTemp}`;
const strSearchUrlTemp = `{$strSearchUrlTemp}`;
document.addEventListener("DOMContentLoaded", function () {
displayHistory()
})
</script>
{/block}
{block name="customize"} {/block}