gpttemp
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
|
||||
<head>
|
||||
{block name="get-data"}{/block}
|
||||
<meta charset="UTF-8">
|
||||
@@ -7,21 +8,32 @@
|
||||
<title>{block name="title"}{/block}</title>
|
||||
<meta name="keywords" content='{block name="keywords"}{/block}'>
|
||||
<meta name="description" content='{block name="description"}{/block}'>
|
||||
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
|
||||
|
||||
|
||||
<!-- 动态主题颜色 -->
|
||||
{// 动态主题颜色 }
|
||||
<style>
|
||||
:root {
|
||||
:root{
|
||||
--primary-color: {$TpStyle.color_primary};
|
||||
--secondary-color: {$TpStyle.color_secondary};
|
||||
--accent-color: {$TpStyle.color_accent};
|
||||
--bg-color: {$TpStyle.color_bg};
|
||||
--bg-soft-color: {$TpStyle.color_bg_soft};
|
||||
--text-color: {$TpStyle.color_text_primary};
|
||||
--text-muted-color: {$TpStyle.color_text_secondary};
|
||||
--border-color: {$TpStyle.color_border};
|
||||
--grad-start: {$TpStyle.color_grad_start};
|
||||
--grad-end: {$TpStyle.color_grad_end};
|
||||
|
||||
--page-max-width: {$TpStyle.page_max_width_pc}px;
|
||||
}
|
||||
body{
|
||||
background: var(--bg-color);
|
||||
color: var(--text-color);
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- 自适应 CSS -->
|
||||
<link rel="stylesheet" href="/template/videoGpt1/static/css/style_1.css?v={$TpStyle.static_hash}">
|
||||
<!-- <link rel="stylesheet" href="/template/videoGpt1/static/css/style_{$TpStyle.theme_id}.css?v={$TpStyle.static_hash}"> -->
|
||||
|
||||
{// 每个域名专属 CSS(合并 + 前缀替换后) }
|
||||
<link rel="stylesheet" href="{$TpCss}">
|
||||
|
||||
{block name="head"}{/block}
|
||||
{block name="head-css"}{/block}
|
||||
@@ -42,59 +54,32 @@
|
||||
})();
|
||||
</script>
|
||||
</head>
|
||||
{block name="strPageCode"}
|
||||
<?php $strPageCode = 'home'; ?>
|
||||
{/block}
|
||||
<body data-class="{$TpStyle.dom_prefix}">
|
||||
{// header}
|
||||
{include file="$TpTpl.head" /}
|
||||
|
||||
<body>
|
||||
<main class="{$TpStyle.dom_prefix}-main">
|
||||
{block name="main"}{/block}
|
||||
</main>
|
||||
|
||||
<header class="nav">
|
||||
<div class="nav-inner">
|
||||
<a class="logo" href="/">Movie</a>
|
||||
{// footer }
|
||||
{include file="$TpTpl.foot" /}
|
||||
|
||||
<form class="search" action="/search.html">
|
||||
<input name="wd" type="text" placeholder="搜索影片…">
|
||||
</form>
|
||||
{// DOM 干扰节点,站群差异用 }
|
||||
<div style="display:none">tpl-{$TpStyle.static_hash}</div>
|
||||
|
||||
<!-- pc 菜单 -->
|
||||
<nav class="menu-pc">
|
||||
<a href="/">首页</a>
|
||||
<a href="/list/1.html">电影</a>
|
||||
<a href="/list/2.html">电视剧</a>
|
||||
<a href="/list/3.html">综艺</a>
|
||||
<a href="/list/4.html">动漫</a>
|
||||
</nav>
|
||||
|
||||
<!-- h5 菜单按钮 -->
|
||||
<div class="menu-btn" onclick="document.querySelector('.menu-h5').classList.toggle('show')">☰</div>
|
||||
</div>
|
||||
|
||||
<!-- h5 下拉菜单 -->
|
||||
<nav class="menu-h5">
|
||||
<a href="/">首页</a>
|
||||
<a href="/list/1.html">电影</a>
|
||||
<a href="/list/2.html">电视剧</a>
|
||||
<a href="/list/3.html">综艺</a>
|
||||
<a href="/list/4.html">动漫</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
{block name="main"}
|
||||
{/block}
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<p>本站不存储任何视频,资源均来自互联网公开提供。</p>
|
||||
</footer>
|
||||
|
||||
<!-- DOM 干扰节点,站群差异用 -->
|
||||
<div style="display:none">tpl-{$TpStyle.static_hash}</div>
|
||||
|
||||
|
||||
{// 全局统计 }
|
||||
{// 全局统计 }
|
||||
{site:cfg code="PUBLIC_TONGJI_CODE" encode="false"/}
|
||||
|
||||
{// 站点统计 }
|
||||
{$DomainModel->d_statis|raw}
|
||||
{// 站点统计 }
|
||||
{$DomainModel->d_statis|raw}
|
||||
|
||||
{block name="footer-js"}{/block}
|
||||
<script type="text/javascript"
|
||||
src="{site:cfg code='PUBLIC_STATIC_DOMAIN' encode='false'/}/static/js/lazy.js?v={site:cfg code='STATIC_FILE_VERSION' encode='false'/}"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user