Files
SEONexus/code/app/home/view/videoGpt1/base.html
2025-12-31 00:49:32 +08:00

85 lines
2.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
{block name="get-data"}{/block}
<meta charset="UTF-8">
<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{
--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="{$TpCss}">
{block name="head"}{/block}
{block name="head-css"}{/block}
{block name="head-js"}{/block}
<script>
(function () {
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
</head>
{block name="strPageCode"}
<?php $strPageCode = 'home'; ?>
{/block}
<body data-class="{$TpStyle.dom_prefix}">
{// header}
{include file="$TpTpl.head" /}
<main class="{$TpStyle.dom_prefix}-main">
{block name="main"}{/block}
</main>
{// footer }
{include file="$TpTpl.foot" /}
{// DOM 干扰节点,站群差异用 }
<div style="display:none">tpl-{$TpStyle.static_hash}</div>
{// 全局统计 }
{site:cfg code="PUBLIC_TONGJI_CODE" encode="false"/}
{// 站点统计 }
{$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>