gpttemp
This commit is contained in:
121
code/app/common/helper/CssBuilder.php
Normal file
121
code/app/common/helper/CssBuilder.php
Normal file
@@ -0,0 +1,121 @@
|
||||
<?php
|
||||
namespace app\common\helper;
|
||||
|
||||
class CssBuilder
|
||||
{
|
||||
/**
|
||||
* 构建当前域名的 CSS(ThinkPHP 最终稳定版本)
|
||||
* - 自动合并模块 CSS
|
||||
* - 自动加入 global_base.css(全局布局)
|
||||
* - 自动替换 __PFX__
|
||||
* - 自动压缩空白
|
||||
* - 完全兼容 TP 的 public/static/
|
||||
*/
|
||||
public static function build(array $cssFiles, string $domPrefix, string $staticHash): string
|
||||
{
|
||||
// Public 目录路径
|
||||
$publicPath = root_path() . 'public' . DIRECTORY_SEPARATOR;
|
||||
|
||||
// 模块 CSS 存放目录
|
||||
$baseDir = $publicPath . "static/css/modules/";
|
||||
|
||||
// 构建后的合并文件目录
|
||||
$targetDir = $publicPath . "static/css/compiled/";
|
||||
|
||||
// 自动创建 compiled 目录
|
||||
if (!is_dir($targetDir)) {
|
||||
@mkdir($targetDir, 0755, true);
|
||||
}
|
||||
|
||||
// 输出文件名(作为域名专属缓存)
|
||||
$targetFile = $targetDir . "dom_{$staticHash}.css";
|
||||
|
||||
// 如果已经生成过,直接返回
|
||||
if (file_exists($targetFile)) {
|
||||
return "/static/css/compiled/dom_{$staticHash}.css";
|
||||
}
|
||||
|
||||
$listCss = [
|
||||
"list/list_base.css","list/list_cols.css","list/list_rows.css",
|
||||
"title/title_A.css","list/title/title_B.css","list/title/title_C.css","list/title/title_D.css","list/title/title_E.css",
|
||||
"list/shell/shell_A.css","list/shell/shell_B.css","list/shell/shell_C.css","list/shell/shell_D.css",
|
||||
"list/item/_item_media.css","list/item/_item_poster.css","list/item/_item_rank.css","list/item/_item_text.css",
|
||||
"list/item/_item_base.css","list/item/_item_title_clamp.css",
|
||||
"list/item/item_01.css","list/item/item_02.css","list/item/item_03.css","list/item/item_04.css","list/item/item_05.css",
|
||||
"list/behavior/behavior.css",
|
||||
"pager/pager_base.css",
|
||||
"seowords/seowords.css",
|
||||
"breadcrumb/breadcrumb.css",
|
||||
|
||||
// "rank/rank_home.css",
|
||||
];
|
||||
$cssFiles[] = 'detail_main/detail_main.base.css';
|
||||
$cssFiles[] = 'detail_main/title.css';
|
||||
$cssFiles[] = 'detail_main/cover.css';
|
||||
$cssFiles[] = 'detail_main/meta.css';
|
||||
$cssFiles[] = 'detail_main/desc.css';
|
||||
$cssFiles[] = 'detail_main/action.css';
|
||||
|
||||
$cssFiles[] = 'player/player_dplayer.css';
|
||||
|
||||
|
||||
// $cssFiles[] = 'detail_main/layout/layout_C.css';
|
||||
// $cssFiles[] = 'detail_main/layout/layout_B.css';
|
||||
// $cssFiles[] = 'detail_main/layout/layout_A.css';
|
||||
|
||||
// $cssFiles[] = 'playline/layout/layout_C.css';
|
||||
// $cssFiles[] = 'playline/layout/layout_B.css';
|
||||
// $cssFiles[] = 'playline/layout/layout_A.css';
|
||||
|
||||
// $cssFiles[] = 'breadcrumb/layout/layout_C.css';
|
||||
// $cssFiles[] = 'breadcrumb/layout/layout_B.css';
|
||||
// $cssFiles[] = 'breadcrumb/layout/layout_A.css';
|
||||
|
||||
|
||||
$cssFiles = array_merge($cssFiles, $listCss);
|
||||
|
||||
|
||||
// ----------------------------------------
|
||||
// ★ 关键:强制加入全局基础 CSS
|
||||
// ----------------------------------------
|
||||
$finalCssFiles = array_merge(
|
||||
['global_base.css'], // <<< 必须放第一位
|
||||
$cssFiles
|
||||
);
|
||||
$finalCssFiles = array_unique($finalCssFiles);
|
||||
|
||||
// ----------------------------------------
|
||||
// 合并 CSS 文件内容
|
||||
// ----------------------------------------
|
||||
$allCss = "";
|
||||
|
||||
foreach ($finalCssFiles as $file) {
|
||||
|
||||
$path = $baseDir . $file;
|
||||
|
||||
if (!is_file($path)) {
|
||||
// 你可以取消注释来调试
|
||||
// echo "<!-- missing css: {$path} -->";
|
||||
continue;
|
||||
}
|
||||
|
||||
$css = file_get_contents($path);
|
||||
|
||||
// 类名前缀替换
|
||||
$css = str_replace('__PFX__', $domPrefix, $css);
|
||||
|
||||
// 简单压缩(减少 fingerprint 重复率)
|
||||
$css = preg_replace('/\s+/', ' ', $css);
|
||||
|
||||
// 模块标记
|
||||
// $allCss .= "/* {$file} */" . $css;
|
||||
$allCss .= $css;
|
||||
}
|
||||
|
||||
// 写入合并后的 CSS
|
||||
file_put_contents($targetFile, $allCss);
|
||||
|
||||
// 返回前端可访问路径
|
||||
return "/static/css/compiled/dom_{$staticHash}.css";
|
||||
}
|
||||
}
|
||||
115
code/app/common/helper/SeoWordsHelper.php
Normal file
115
code/app/common/helper/SeoWordsHelper.php
Normal file
@@ -0,0 +1,115 @@
|
||||
<?php
|
||||
|
||||
namespace app\common\helper;
|
||||
|
||||
class SeoWordsHelper
|
||||
{
|
||||
/**
|
||||
* 根据 $intRewrite 处理 SeoWords
|
||||
*/
|
||||
public static function build(
|
||||
array $words,
|
||||
int $intRewrite,
|
||||
array $video = []
|
||||
): array {
|
||||
if (empty($words)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$arrSeoWords = [];
|
||||
switch ($intRewrite) {
|
||||
|
||||
// 0:原序全部
|
||||
case 0:
|
||||
$arrSeoWords = $words;
|
||||
|
||||
// 1:前 6
|
||||
case 1:
|
||||
$arrSeoWords = array_slice($words, 0, 6);
|
||||
|
||||
// 2:随机 8
|
||||
case 2:
|
||||
shuffle($words);
|
||||
$arrSeoWords = array_slice($words, 0, 8);
|
||||
|
||||
// 3:插年份
|
||||
case 3:
|
||||
$arrSeoWords = self::appendYear($words, $video);
|
||||
|
||||
// 4:插“在线观看 / 免费 / 高清”
|
||||
case 4:
|
||||
$arrSeoWords = self::appendSuffix($words);
|
||||
|
||||
// 5:重排 + 去重
|
||||
case 5:
|
||||
shuffle($words);
|
||||
$arrSeoWords = array_values(array_unique($words));
|
||||
|
||||
// 兜底
|
||||
default:
|
||||
$arrSeoWords = array_slice($words, 0, 6);
|
||||
}
|
||||
|
||||
$arrNewsSeoWords = [];
|
||||
|
||||
foreach ($arrSeoWords as $w) {
|
||||
|
||||
$arrNewsSeoWords[] = ['text' => $w, 'url' => 'javascript:void(0)'];
|
||||
|
||||
}
|
||||
|
||||
return $arrNewsSeoWords;
|
||||
}
|
||||
|
||||
/* ================== 子策略 ================== */
|
||||
|
||||
private static function appendYear(array $words, array $video): array
|
||||
{
|
||||
$year = $video['v_year'] ?? date('Y');
|
||||
$out = [];
|
||||
|
||||
foreach ($words as $w) {
|
||||
// 防止重复插
|
||||
if (strpos($w, (string)$year) === false) {
|
||||
$out[] = $year . $w;
|
||||
} else {
|
||||
$out[] = $w;
|
||||
}
|
||||
}
|
||||
return $out;
|
||||
}
|
||||
|
||||
private static function appendSuffix(array $words): array
|
||||
{
|
||||
$suffixGroups = [
|
||||
'watch' => ['在线观看', '在线播放', '在线免费看'],
|
||||
'free' => ['免费观看', '高清免费', '全集免费观看'],
|
||||
'hd' => ['高清版', '蓝光版', '1080P', '4K版'],
|
||||
'scene' => ['手机在线观看', '手机免费观看', '电脑在线观看'],
|
||||
'new' => ['最新资源', '最新上线'],
|
||||
];
|
||||
|
||||
$groupKeys = array_keys($suffixGroups);
|
||||
$out = [];
|
||||
|
||||
foreach ($words as $w) {
|
||||
// 50% 概率加后缀
|
||||
if ((crc32($w) & 1) === 0) {
|
||||
$out[] = $w;
|
||||
continue;
|
||||
}
|
||||
|
||||
$group = $groupKeys[crc32($w) % count($groupKeys)];
|
||||
$suffixList = $suffixGroups[$group];
|
||||
$suffix = $suffixList[crc32($w) % count($suffixList)];
|
||||
|
||||
if (!str_contains($w, $suffix)) {
|
||||
$out[] = $w . $suffix;
|
||||
} else {
|
||||
$out[] = $w;
|
||||
}
|
||||
}
|
||||
|
||||
return $out;
|
||||
}
|
||||
}
|
||||
907
code/app/common/helper/SiteStyle-back.php
Normal file
907
code/app/common/helper/SiteStyle-back.php
Normal file
@@ -0,0 +1,907 @@
|
||||
<?php
|
||||
|
||||
namespace app\common\helper;
|
||||
|
||||
class SiteStyle
|
||||
{
|
||||
/* ======================================================
|
||||
* 公共入口
|
||||
* ====================================================== */
|
||||
public static function getConfig($domainRow = null): array
|
||||
{
|
||||
$host = self::resolveHost();
|
||||
$seed = self::resolveSeed($host);
|
||||
|
||||
// 1) 读取或生成冻结 cfg(必须持久化)
|
||||
$cfg = self::loadOrGenerateCfg($domainRow, $host, $seed);
|
||||
|
||||
// 2) 运行时 payload(TpStyle 用这个)
|
||||
return self::buildRuntimePayload($cfg, $host, $seed, $domainRow);
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* Host / Seed
|
||||
* ====================================================== */
|
||||
private static function resolveHost(): string
|
||||
{
|
||||
$host = $_SERVER['HTTP_HOST'] ?? 'default.com';
|
||||
$host = strtolower(preg_replace('/^www\./i', '', $host));
|
||||
$host = explode(':', $host)[0];
|
||||
return $host ?: 'default.com';
|
||||
}
|
||||
|
||||
private static function resolveSeed(string $host): int
|
||||
{
|
||||
return crc32($host);
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* 读取 / 生成 / 补齐 / 持久化 cfg(冻结层)
|
||||
* ====================================================== */
|
||||
private static function loadOrGenerateCfg($domainRow, string $host, int $seed): array
|
||||
{
|
||||
$cfg = self::readDbConfig($domainRow)
|
||||
?? self::readLocalJson($host)
|
||||
?? self::generateFrozenCfg($host, $seed);
|
||||
|
||||
// 补齐旧 cfg(版本升级用)
|
||||
$patched = false;
|
||||
[$cfg, $patched] = self::patchCfgIfNeeded($cfg, $host, $seed);
|
||||
|
||||
// 不管来源是 DB/JSON,只要补丁发生就必须写回(保证可控)
|
||||
if ($patched) {
|
||||
self::persistCfg($domainRow, $host, $cfg);
|
||||
}
|
||||
|
||||
// 如果是新生成的,也要写回
|
||||
if (!isset($cfg['_persisted'])) {
|
||||
$cfg['_persisted'] = 1;
|
||||
self::persistCfg($domainRow, $host, $cfg);
|
||||
}
|
||||
|
||||
return $cfg;
|
||||
}
|
||||
|
||||
private static function persistCfg($domainRow, string $host, array $cfg): void
|
||||
{
|
||||
// 去掉运行时标记(避免污染)
|
||||
$store = $cfg;
|
||||
unset($store['_persisted']);
|
||||
|
||||
self::writeDbConfig($domainRow, $store);
|
||||
self::writeLocalJson($host, $store);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新站:生成冻结 cfg(四层结构)
|
||||
*/
|
||||
private static function generateFrozenCfg(string $host, int $seed): array
|
||||
{
|
||||
// dom_prefix / hash 必须跟 host 强绑定(不要用 seed)
|
||||
$domPrefix = substr(md5($host . '_dom'), 0, 6);
|
||||
$staticHash = substr(md5($host . '_v2025'), 0, 10);
|
||||
|
||||
// 模板编号(沿用你旧的 1-5)
|
||||
$idx = fn($shift) => (($seed >> $shift) % 5) + 1;
|
||||
|
||||
// theme 冻结:mode/variant(调色板运行时算,也可冻结存)
|
||||
$themeMode = ['A', 'B', 'C', 'D'][$seed % 4];
|
||||
$themeVariant = ($seed % 4) + 1;
|
||||
|
||||
// grid 冻结(所有页面通用)
|
||||
$grid = self::buildGridLayout($seed);
|
||||
|
||||
// pages 冻结:home/category
|
||||
$homePage = self::buildHomePageCfg($seed);
|
||||
$categoryPage = self::buildCategoryPageCfg($seed);
|
||||
|
||||
// list_layout 冻结:为“会被渲染的模块”提前生成(后续加模块只要补丁即可)
|
||||
// 说明:这里生成的是“模块级默认布局”,页面渲染时按 module 取用即可
|
||||
$listLayout = self::buildDefaultListLayouts($seed, $homePage, $categoryPage);
|
||||
|
||||
return [
|
||||
'meta' => [
|
||||
'host' => $host,
|
||||
'seed' => $seed,
|
||||
'dom_prefix' => $domPrefix,
|
||||
'static_hash' => $staticHash,
|
||||
'version' => 4, // 你现在的 cfg 版本号(以后升级用)
|
||||
],
|
||||
|
||||
'global' => [
|
||||
'page_max_width_pc' => self::$WIDTH_POOL[$seed % count(self::$WIDTH_POOL)],
|
||||
'grid' => $grid,
|
||||
'theme' => [
|
||||
'mode' => $themeMode,
|
||||
'variant' => $themeVariant,
|
||||
],
|
||||
],
|
||||
|
||||
'pages' => [
|
||||
'home' => $homePage,
|
||||
'category' => $categoryPage,
|
||||
],
|
||||
|
||||
'components' => [
|
||||
'templates' => [
|
||||
'head_tpl' => $idx(0),
|
||||
'foot_tpl' => $idx(1),
|
||||
'banner_tpl' => $idx(2),
|
||||
'list_tpl' => $idx(3),
|
||||
'detail_tpl' => $idx(9),
|
||||
'play_tpl' => $idx(10),
|
||||
|
||||
// 你旧系统里还有 recommend/trending/newest/ranking/category 等独立 tpl,可继续保留
|
||||
'recommend_tpl' => $idx(4),
|
||||
'trending_tpl' => $idx(5),
|
||||
'newest_tpl' => $idx(6),
|
||||
'ranking_tpl' => $idx(7),
|
||||
'category_tpl' => $idx(8),
|
||||
],
|
||||
|
||||
'list' => [
|
||||
'item_variants' => [
|
||||
'01' => 20,
|
||||
'02' => 20,
|
||||
'03' => 20,
|
||||
'04' => 20,
|
||||
'05' => 20,
|
||||
],
|
||||
'semantic_map' => self::$MODULE_ITEM_WEIGHT,
|
||||
'shell_rules' => self::$ITEM_SHELL_MAP,
|
||||
],
|
||||
],
|
||||
|
||||
// 模块布局冻结(核心)
|
||||
'list_layout' => $listLayout,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* 旧 cfg 补齐规则:只要缺字段就补,并标记 patched=true
|
||||
*/
|
||||
private static function patchCfgIfNeeded(array $cfg, string $host, int $seed): array
|
||||
{
|
||||
$patched = false;
|
||||
|
||||
// meta
|
||||
if (!isset($cfg['meta'])) {
|
||||
$cfg['meta'] = [];
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['meta']['host'])) {
|
||||
$cfg['meta']['host'] = $host;
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['meta']['seed'])) {
|
||||
$cfg['meta']['seed'] = $seed;
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['meta']['dom_prefix'])) {
|
||||
$cfg['meta']['dom_prefix'] = substr(md5($host . '_dom'), 0, 6);
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['meta']['static_hash'])) {
|
||||
$cfg['meta']['static_hash'] = substr(md5($host . '_v2025'), 0, 10);
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['meta']['version'])) {
|
||||
$cfg['meta']['version'] = 4;
|
||||
$patched = true;
|
||||
}
|
||||
|
||||
// global
|
||||
if (!isset($cfg['global'])) {
|
||||
$cfg['global'] = [];
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['global']['page_max_width_pc'])) {
|
||||
$cfg['global']['page_max_width_pc'] = self::$WIDTH_POOL[$seed % count(self::$WIDTH_POOL)];
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['global']['grid'])) {
|
||||
$cfg['global']['grid'] = self::buildGridLayout($seed);
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['global']['theme'])) {
|
||||
$cfg['global']['theme'] = [
|
||||
'mode' => ['A', 'B', 'C', 'D'][$seed % 4],
|
||||
'variant' => ($seed % 4) + 1,
|
||||
];
|
||||
$patched = true;
|
||||
}
|
||||
|
||||
// pages
|
||||
if (!isset($cfg['pages'])) {
|
||||
$cfg['pages'] = [];
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['pages']['home'])) {
|
||||
$cfg['pages']['home'] = self::buildHomePageCfg($seed);
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['pages']['category'])) {
|
||||
$cfg['pages']['category'] = self::buildCategoryPageCfg($seed);
|
||||
$patched = true;
|
||||
}
|
||||
|
||||
// components
|
||||
if (!isset($cfg['components'])) {
|
||||
$cfg['components'] = [];
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['components']['templates'])) {
|
||||
$idx = fn($shift) => (($seed >> $shift) % 5) + 1;
|
||||
$cfg['components']['templates'] = [
|
||||
'head_tpl' => $idx(0),
|
||||
'foot_tpl' => $idx(1),
|
||||
'banner_tpl' => $idx(2),
|
||||
'list_tpl' => $idx(3),
|
||||
'detail_tpl' => $idx(9),
|
||||
'play_tpl' => $idx(10),
|
||||
'recommend_tpl' => $idx(4),
|
||||
'trending_tpl' => $idx(5),
|
||||
'newest_tpl' => $idx(6),
|
||||
'ranking_tpl' => $idx(7),
|
||||
'category_tpl' => $idx(8),
|
||||
];
|
||||
$patched = true;
|
||||
}
|
||||
if (!isset($cfg['components']['list'])) {
|
||||
$cfg['components']['list'] = [
|
||||
'item_variants' => ['01'=>20,'02'=>20,'03'=>20,'04'=>20,'05'=>20],
|
||||
'semantic_map' => self::$MODULE_ITEM_WEIGHT,
|
||||
'shell_rules' => self::$ITEM_SHELL_MAP,
|
||||
];
|
||||
$patched = true;
|
||||
}
|
||||
|
||||
// list_layout(冻结默认模块布局)
|
||||
if (!isset($cfg['list_layout']) || !is_array($cfg['list_layout'])) {
|
||||
$cfg['list_layout'] = self::buildDefaultListLayouts(
|
||||
$seed,
|
||||
$cfg['pages']['home'],
|
||||
$cfg['pages']['category']
|
||||
);
|
||||
$patched = true;
|
||||
} else {
|
||||
// 补齐缺少的默认模块布局(升级时很关键:你说的“分类页不写入”就靠这里补)
|
||||
$needModules = self::collectNeededModules($cfg['pages']['home'], $cfg['pages']['category']);
|
||||
foreach ($needModules as $m) {
|
||||
if (!isset($cfg['list_layout'][$m])) {
|
||||
$cfg['list_layout'][$m] = self::buildListCfgForModule($seed + crc32($m), $m, $cfg);
|
||||
$patched = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return [$cfg, $patched];
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* Runtime Payload(TpStyle)
|
||||
* ====================================================== */
|
||||
private static function buildRuntimePayload(array $cfg, string $host, int $seed, $domainRow): array
|
||||
{
|
||||
$domPrefix = $cfg['meta']['dom_prefix'];
|
||||
$staticHash = $cfg['meta']['static_hash'];
|
||||
|
||||
// 运行时主题色(从冻结的 mode/variant 计算)
|
||||
$themeMode = $cfg['global']['theme']['mode'] ?? 'A';
|
||||
$themeVariant = (int)($cfg['global']['theme']['variant'] ?? 1);
|
||||
$themeColors = self::buildTheme($seed, $themeMode, $themeVariant);
|
||||
|
||||
// templates(路径输出保持你旧版结构)
|
||||
$tpl = $cfg['components']['templates'];
|
||||
$templates = [
|
||||
'head' => "head/head_" . sprintf("%02d", (int)$tpl['head_tpl']),
|
||||
'foot' => "footer/footer_" . sprintf("%02d", (int)$tpl['foot_tpl']),
|
||||
'banner' => "module/banner/banner_" . sprintf("%02d", (int)$tpl['banner_tpl']),
|
||||
'list' => "module/list/list_" . sprintf("%02d", (int)$tpl['list_tpl']),
|
||||
'detail' => "module/detail/detail_" . sprintf("%02d", (int)$tpl['detail_tpl']),
|
||||
'play' => "module/play/play_" . sprintf("%02d", (int)$tpl['play_tpl']),
|
||||
|
||||
// 旧系统模块(保留)
|
||||
'recommend' => "module/recommend/recommend_" . sprintf("%02d", (int)$tpl['recommend_tpl']),
|
||||
'trending' => "module/trending/trending_" . sprintf("%02d", (int)$tpl['trending_tpl']),
|
||||
'newest' => "module/newest/newest_" . sprintf("%02d", (int)$tpl['newest_tpl']),
|
||||
'ranking' => "module/ranking/ranking_" . sprintf("%02d", (int)$tpl['ranking_tpl']),
|
||||
'category' => "module/category/category_" . sprintf("%02d", (int)$tpl['category_tpl']),
|
||||
];
|
||||
|
||||
// css_files(你当前只要 head/footer/banner/list/detail/play + 可选模块 css)
|
||||
$cssFiles = [
|
||||
"head/head_" . sprintf("%02d", (int)$tpl['head_tpl']) . ".css",
|
||||
"footer/footer_" . sprintf("%02d", (int)$tpl['foot_tpl']) . ".css",
|
||||
"banner/banner_" . sprintf("%02d", (int)$tpl['banner_tpl']) . ".css",
|
||||
"list/list_" . sprintf("%02d", (int)$tpl['list_tpl']) . ".css",
|
||||
"detail/detail_" . sprintf("%02d", (int)$tpl['detail_tpl']) . ".css",
|
||||
"play/play_" . sprintf("%02d", (int)$tpl['play_tpl']) . ".css",
|
||||
];
|
||||
$cssFiles = array_values(array_unique($cssFiles));
|
||||
|
||||
return [
|
||||
'host' => $host,
|
||||
'seed' => $seed,
|
||||
'dom_prefix' => $domPrefix,
|
||||
'static_hash' => $staticHash,
|
||||
|
||||
// cfg 全量给模板(你现在模板一直在用)
|
||||
'template_cfg' => $cfg,
|
||||
|
||||
// 兼容你现在模板里直接用的快捷字段
|
||||
'page_max_width_pc' => $cfg['global']['page_max_width_pc'],
|
||||
'list_layout' => $cfg['list_layout'],
|
||||
'category_page' => $cfg['pages']['category'],
|
||||
|
||||
// 原结构
|
||||
'templates' => $templates,
|
||||
'css_files' => $cssFiles,
|
||||
] + $themeColors;
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* Pages cfg(冻结规则池 + 稳定映射)
|
||||
* ====================================================== */
|
||||
private static function buildHomePageCfg(int $seed): array
|
||||
{
|
||||
$modulePool = ['newest', 'hot', 'rank', 'recommend', 'trending'];
|
||||
$shuffled = self::shuffleStable($modulePool, $seed + 101);
|
||||
|
||||
// 每域名固定 3~5
|
||||
$count = 3 + ($seed % 3);
|
||||
|
||||
return [
|
||||
'top_modules' => array_slice($shuffled, 0, $count),
|
||||
];
|
||||
}
|
||||
|
||||
private static function buildCategoryPageCfg(int $seed): array
|
||||
{
|
||||
return [
|
||||
'top_block' => self::buildCategoryTopBlock($seed),
|
||||
'sections_pool' => self::buildCategorySectionsPool($seed),
|
||||
];
|
||||
}
|
||||
|
||||
private static function buildCategoryTopBlock(int $seed): array
|
||||
{
|
||||
$modules = ['newest', 'hot', 'rank'];
|
||||
return ['module' => $modules[$seed % count($modules)]];
|
||||
}
|
||||
|
||||
private static function buildCategorySectionsPool(int $seed): array
|
||||
{
|
||||
$basePool = [
|
||||
['shell' => 'A', 'item' => '01', 'title' => 'F', 'class' => 'compact'],
|
||||
['shell' => 'B', 'item' => '01', 'title' => 'F', 'class' => ''],
|
||||
['shell' => 'B', 'item' => '02', 'title' => 'F', 'class' => 'loose'],
|
||||
['shell' => 'C', 'item' => '05', 'title' => 'F', 'class' => 'top compact'],
|
||||
];
|
||||
|
||||
$pool = self::shuffleStable($basePool, $seed + 301);
|
||||
$count = 3 + ($seed % 3); // 3~5(basePool 只有4条,这里实际最大=4;你以后扩展 basePool 即可>5)
|
||||
|
||||
return array_slice($pool, 0, min($count, count($pool)));
|
||||
}
|
||||
|
||||
/**
|
||||
* 供模板调用:二级分类块 cfg(不再在模板里写 crc32 逻辑)
|
||||
*
|
||||
* 用法(模板里):
|
||||
* <?php $cfg = \app\common\helper\SiteStyle::buildCategorySectionCfg($TpStyle['template_cfg'], $arrChildrenCategory['v_category_en'], $intChildrenKey); ?>
|
||||
*/
|
||||
public static function buildCategorySectionCfg(array $cfg, string $subCategoryEn, int $order = 0): array
|
||||
{
|
||||
$seed = (int)($cfg['meta']['seed'] ?? 0)
|
||||
+ crc32($subCategoryEn)
|
||||
+ $order * 13;
|
||||
|
||||
$pool = $cfg['pages']['category']['sections_pool'] ?? [];
|
||||
if (empty($pool)) {
|
||||
// 兜底
|
||||
$pool = self::buildCategorySectionsPool($seed);
|
||||
}
|
||||
|
||||
$base = $pool[$seed % count($pool)];
|
||||
|
||||
$item = (string)$base['item'];
|
||||
$itemType = self::$ITEM_TYPE_MAP[$item] ?? 'poster';
|
||||
|
||||
$variantCount = (int)($cfg['components']['list']['item_variants'][$item] ?? 1);
|
||||
$variant = $variantCount > 0 ? ($seed % $variantCount) : 0;
|
||||
|
||||
return [
|
||||
'shell' => $base['shell'],
|
||||
'item' => $item,
|
||||
'item_type' => $itemType,
|
||||
'item_variant' => $variant,
|
||||
'title' => $base['title'],
|
||||
'class' => $base['class'],
|
||||
'grid' => $cfg['global']['grid'],
|
||||
];
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* list_layout(冻结模块默认布局)
|
||||
* ====================================================== */
|
||||
private static function buildDefaultListLayouts(int $seed, array $homePage, array $categoryPage): array
|
||||
{
|
||||
$needModules = self::collectNeededModules($homePage, $categoryPage);
|
||||
|
||||
$out = [];
|
||||
foreach ($needModules as $m) {
|
||||
$out[$m] = self::buildListCfgForModule($seed + crc32($m), $m, [
|
||||
'global' => ['grid' => self::buildGridLayout($seed)],
|
||||
'components' => ['list' => ['item_variants' => ['01'=>20,'02'=>20,'03'=>20,'04'=>20,'05'=>20]]],
|
||||
]);
|
||||
}
|
||||
return $out;
|
||||
}
|
||||
|
||||
private static function collectNeededModules(array $homePage, array $categoryPage): array
|
||||
{
|
||||
$modules = [];
|
||||
|
||||
// home 顶部模块
|
||||
foreach (($homePage['top_modules'] ?? []) as $m) {
|
||||
$modules[] = $m;
|
||||
}
|
||||
|
||||
// category 顶部块模块
|
||||
if (!empty($categoryPage['top_block']['module'])) {
|
||||
$modules[] = $categoryPage['top_block']['module'];
|
||||
}
|
||||
|
||||
// 常见页面:你后面肯定会用到(先冻结)
|
||||
$modules[] = 'category_list';
|
||||
$modules[] = 'search_list';
|
||||
|
||||
// 去重
|
||||
$modules = array_values(array_unique(array_filter($modules)));
|
||||
return $modules;
|
||||
}
|
||||
|
||||
private static function buildListCfgForModule(int $seed, string $module, array $cfg): array
|
||||
{
|
||||
$layout = self::buildListLayout($seed, $module);
|
||||
|
||||
// Title
|
||||
$layout['title'] = self::pickTitleTpl($seed + 17, $module);
|
||||
$layout['title_text'] = self::buildTitleText($seed + 19, $module);
|
||||
|
||||
// Behavior
|
||||
$behavior = self::buildListBehavior($seed + 23, $module);
|
||||
$layout['behavior'] = $behavior;
|
||||
$layout['class'] = trim(implode(' ', array_filter($behavior)));
|
||||
|
||||
// item variant(冻结)
|
||||
$layout['item_variant'] = self::pickItemVariant(
|
||||
$seed + 31,
|
||||
$layout['item'],
|
||||
$module
|
||||
);
|
||||
|
||||
// grid(冻结引用全局)
|
||||
$layout['grid'] = $cfg['global']['grid'] ?? self::buildGridLayout($seed);
|
||||
|
||||
return $layout;
|
||||
}
|
||||
|
||||
/**
|
||||
* 构建 List 布局(带语义权重 + 合法映射)
|
||||
*/
|
||||
private static function buildListLayout(int $seed, string $module): array
|
||||
{
|
||||
// Item(语义优先)
|
||||
$itemIdx = self::pickItemBySemantic($module, $seed);
|
||||
$itemType = self::$ITEM_TYPE_MAP[$itemIdx] ?? 'poster';
|
||||
|
||||
// Shell(只在合法池中选)
|
||||
$allowedShells = self::$ITEM_SHELL_MAP[$itemType] ?? ['B'];
|
||||
$shell = $allowedShells[($seed >> 4) % count($allowedShells)];
|
||||
|
||||
// Title(只是一个默认值,最终会被 pickTitleTpl 覆盖)
|
||||
$titlePool = ['A', 'B', 'C', 'D', 'E'];
|
||||
$title = $titlePool[($seed >> 6) % count($titlePool)];
|
||||
|
||||
return [
|
||||
'module' => $module,
|
||||
'item' => $itemIdx,
|
||||
'item_type' => $itemType,
|
||||
'shell' => $shell,
|
||||
'title' => $title,
|
||||
'class' => '', // 最终由 buildListBehavior 生成
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* item variant:由模块/seed 稳定取值
|
||||
*/
|
||||
private static function pickItemVariant(int $seed, string $item, string $scope = 'list'): int
|
||||
{
|
||||
$count = 20;
|
||||
$salt = crc32($scope);
|
||||
return abs($seed + $salt) % $count;
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表行为(Behavior)
|
||||
*/
|
||||
private static function buildListBehavior(int $seed, string $module): array
|
||||
{
|
||||
$behavior = [];
|
||||
|
||||
switch ($module) {
|
||||
case 'newest':
|
||||
$behavior[] = ($seed % 2 === 0) ? 'compact' : '';
|
||||
$behavior[] = ($seed % 2 === 1) ? 'collapsed' : '';
|
||||
break;
|
||||
|
||||
case 'hot':
|
||||
case 'trending':
|
||||
case 'recommend':
|
||||
$behavior[] = ($seed % 3 === 0) ? 'loose' : '';
|
||||
$behavior[] = ($seed % 2 === 0) ? 'emphasis' : '';
|
||||
break;
|
||||
|
||||
case 'rank':
|
||||
$behavior[] = 'top';
|
||||
$behavior[] = 'compact';
|
||||
break;
|
||||
|
||||
default:
|
||||
// category_list / search_list 等兜底
|
||||
$behavior[] = ($seed % 2 === 0) ? 'compact' : '';
|
||||
}
|
||||
|
||||
return array_values(array_filter($behavior));
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据模块语义 + seed 选择 Item(带权重)
|
||||
*/
|
||||
private static function pickItemBySemantic(string $module, int $seed): string
|
||||
{
|
||||
$conf = self::$MODULE_ITEM_WEIGHT[$module] ?? null;
|
||||
|
||||
if (!$conf) {
|
||||
$pool = array_keys(self::$ITEM_TYPE_MAP);
|
||||
return $pool[$seed % count($pool)];
|
||||
}
|
||||
|
||||
// primary 75%
|
||||
if (($seed & 0b11) !== 0) {
|
||||
return $conf['primary'][$seed % count($conf['primary'])];
|
||||
}
|
||||
|
||||
// secondary
|
||||
if (!empty($conf['secondary']) && (($seed >> 2) & 1)) {
|
||||
return $conf['secondary'][$seed % count($conf['secondary'])];
|
||||
}
|
||||
|
||||
return $conf['fallback'][0];
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* Grid(冻结)
|
||||
* ====================================================== */
|
||||
private static function pickPcCols(int $seed, string $size): int
|
||||
{
|
||||
$pool = self::$PC_COLS_MAP[$size] ?? [3];
|
||||
return $pool[$seed % count($pool)];
|
||||
}
|
||||
|
||||
private static function buildGridLayout(int $seed): array
|
||||
{
|
||||
return [
|
||||
// H5:1–3 列
|
||||
'cols_h5' => [1, 2, 3][$seed % 3],
|
||||
// PC:按断点
|
||||
'cols_pc_sm' => self::pickPcCols($seed + 11, 'sm'),
|
||||
'cols_pc_md' => self::pickPcCols($seed + 23, 'md'),
|
||||
'cols_pc_lg' => self::pickPcCols($seed + 37, 'lg'),
|
||||
];
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* Title 文案池
|
||||
* ====================================================== */
|
||||
private static function mapTitleType(string $module): string
|
||||
{
|
||||
// 你要求:category/search/recommend 可复用 newest 的文案池
|
||||
return match ($module) {
|
||||
'category_list', 'search_list', 'recommend' => 'newest',
|
||||
default => $module,
|
||||
};
|
||||
}
|
||||
|
||||
private static function pickStable(array $list, int $seed)
|
||||
{
|
||||
if (empty($list)) return null;
|
||||
$seed = abs($seed);
|
||||
return $list[$seed % count($list)];
|
||||
}
|
||||
|
||||
private static function buildTitleText(int $seed, string $module): array
|
||||
{
|
||||
$type = self::mapTitleType($module);
|
||||
if (!isset(self::$TITLE_POOL[$type])) {
|
||||
$type = 'newest';
|
||||
}
|
||||
$pool = self::$TITLE_POOL[$type];
|
||||
|
||||
return [
|
||||
'primary' => self::pickStable($pool['primary'], $seed),
|
||||
'secondary' => self::pickStable($pool['secondary'], $seed >> 2),
|
||||
'seo' => self::pickStable($pool['seo'], $seed >> 4),
|
||||
];
|
||||
}
|
||||
|
||||
private static function pickTitleTpl(int $seed, string $module): string
|
||||
{
|
||||
$map = [
|
||||
'newest' => ['A', 'B', 'D'],
|
||||
'hot' => ['A', 'C', 'D', 'B'],
|
||||
'rank' => ['E', 'D'],
|
||||
'trending' => ['A', 'C', 'D'],
|
||||
'recommend' => ['A', 'B', 'C'],
|
||||
'category_list'=> ['F', 'A'],
|
||||
'search_list' => ['A', 'B'],
|
||||
];
|
||||
|
||||
$list = $map[$module] ?? ['A'];
|
||||
return $list[$seed % count($list)];
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* DB / JSON
|
||||
* ====================================================== */
|
||||
private static function readDbConfig($domainRow): ?array
|
||||
{
|
||||
try {
|
||||
if (!$domainRow) return null;
|
||||
|
||||
$raw = is_array($domainRow)
|
||||
? ($domainRow['t_cfg'] ?? null)
|
||||
: ($domainRow->t_cfg ?? null);
|
||||
|
||||
if (empty($raw)) return null;
|
||||
|
||||
return json_decode($raw, true) ?: null;
|
||||
} catch (\Throwable $e) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
private static function writeDbConfig($domainRow, array $cfg): void
|
||||
{
|
||||
if (!$domainRow || is_array($domainRow)) return;
|
||||
|
||||
try {
|
||||
$domainRow->t_cfg = json_encode($cfg, JSON_UNESCAPED_UNICODE);
|
||||
$domainRow->save();
|
||||
} catch (\Throwable $e) {
|
||||
}
|
||||
}
|
||||
|
||||
private static function readLocalJson(string $host): ?array
|
||||
{
|
||||
$file = root_path() . "storage/theme_cache/{$host}.json";
|
||||
if (!is_file($file)) return null;
|
||||
|
||||
return json_decode(file_get_contents($file), true) ?: null;
|
||||
}
|
||||
|
||||
private static function writeLocalJson(string $host, array $cfg): void
|
||||
{
|
||||
$dir = root_path() . "storage/theme_cache/";
|
||||
if (!is_dir($dir)) @mkdir($dir, 0755, true);
|
||||
|
||||
file_put_contents(
|
||||
$dir . "{$host}.json",
|
||||
json_encode($cfg, JSON_UNESCAPED_UNICODE)
|
||||
);
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* 稳定洗牌
|
||||
* ====================================================== */
|
||||
private static function shuffleStable(array $arr, int $seed): array
|
||||
{
|
||||
$result = $arr;
|
||||
$rand = $seed;
|
||||
|
||||
for ($i = count($result) - 1; $i > 0; $i--) {
|
||||
$rand = ($rand * 31 + 17) & 0x7fffffff;
|
||||
$j = $rand % ($i + 1);
|
||||
[$result[$i], $result[$j]] = [$result[$j], $result[$i]];
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* 主题色(沿用你原来的 buildTheme + 辅助函数)
|
||||
* ====================================================== */
|
||||
private static function buildTheme(int $seed, string $mode, int $variant): array
|
||||
{
|
||||
$base = $seed + $variant * 97;
|
||||
if ($mode === 'D') $mode = ['A', 'B', 'C'][$base % 3];
|
||||
|
||||
$h = $base % 360;
|
||||
|
||||
switch ($mode) {
|
||||
case 'A':
|
||||
$primary = self::hslToHex($h, 78, 55);
|
||||
$secondary = self::hslToHex($h + 30, 65, 50);
|
||||
$accent = self::hslToHex($h + 310, 85, 56);
|
||||
$bg = '#F8FAFC';
|
||||
$bgSoft = '#F1F5F9';
|
||||
break;
|
||||
|
||||
case 'B':
|
||||
$primary = self::hslToHex($h, 55, 60);
|
||||
$secondary = self::hslToHex($h + 40, 40, 65);
|
||||
$accent = self::hslToHex($h + 300, 45, 58);
|
||||
$bg = '#FBFBFE';
|
||||
$bgSoft = '#F5F5FA';
|
||||
break;
|
||||
|
||||
case 'C':
|
||||
$primary = self::hslToHex($h, 80, 55);
|
||||
$secondary = self::hslToHex($h + 200, 60, 50);
|
||||
$accent = self::hslToHex($h + 40, 75, 60);
|
||||
$bg = self::hslToHex($h + 190, 30, 12);
|
||||
$bgSoft = self::hslToHex($h + 190, 25, 16);
|
||||
break;
|
||||
|
||||
default:
|
||||
$primary = self::hslToHex($h, 55, 60);
|
||||
$secondary = self::hslToHex($h + 40, 40, 65);
|
||||
$accent = self::hslToHex($h + 300, 45, 58);
|
||||
$bg = '#FBFBFE';
|
||||
$bgSoft = '#F5F5FA';
|
||||
}
|
||||
|
||||
$dark = self::isDarkColor($bg);
|
||||
|
||||
return [
|
||||
'color_primary' => $primary,
|
||||
'color_secondary' => $secondary,
|
||||
'color_accent' => $accent,
|
||||
'color_bg' => $bg,
|
||||
'color_bg_soft' => $bgSoft,
|
||||
'color_text_primary' => $dark ? '#FFF' : '#111',
|
||||
'color_text_secondary' => $dark ? '#CCC' : '#666',
|
||||
'color_border' => $dark ? 'rgba(255,255,255,.1)' : 'rgba(0,0,0,.1)',
|
||||
'color_grad_start' => $primary,
|
||||
'color_grad_end' => $secondary,
|
||||
'shadow_color' => $dark ? 'rgba(0,0,0,.7)' : 'rgba(0,0,0,.12)',
|
||||
'is_dark_mode' => $dark,
|
||||
];
|
||||
}
|
||||
|
||||
private static function hslToHex($h, $s, $l): string
|
||||
{
|
||||
$h /= 360;
|
||||
$s /= 100;
|
||||
$l /= 100;
|
||||
$c = (1 - abs(2 * $l - 1)) * $s;
|
||||
$x = $c * (1 - abs(fmod($h * 6, 2) - 1));
|
||||
$m = $l - $c / 2;
|
||||
|
||||
if ($h < 1 / 6) [$r, $g, $b] = [$c, $x, 0];
|
||||
elseif ($h < 2 / 6) [$r, $g, $b] = [$x, $c, 0];
|
||||
elseif ($h < 3 / 6) [$r, $g, $b] = [0, $c, $x];
|
||||
elseif ($h < 4 / 6) [$r, $g, $b] = [0, $x, $c];
|
||||
elseif ($h < 5 / 6) [$r, $g, $b] = [$x, 0, $c];
|
||||
else [$r, $g, $b] = [$c, 0, $x];
|
||||
|
||||
$r = round(($r + $m) * 255);
|
||||
$g = round(($g + $m) * 255);
|
||||
$b = round(($b + $m) * 255);
|
||||
return sprintf("#%02X%02X%02X", $r, $g, $b);
|
||||
}
|
||||
|
||||
private static function isDarkColor(string $hex): bool
|
||||
{
|
||||
$hex = ltrim($hex, '#');
|
||||
$r = hexdec(substr($hex, 0, 2));
|
||||
$g = hexdec(substr($hex, 2, 2));
|
||||
$b = hexdec(substr($hex, 4, 2));
|
||||
|
||||
$lum = (0.2126 * $r + 0.7152 * $g + 0.0722 * $b) / 255;
|
||||
return $lum < 0.45;
|
||||
}
|
||||
|
||||
/* ======================================================
|
||||
* 常量池
|
||||
* ====================================================== */
|
||||
private static array $WIDTH_POOL = [860, 900, 960, 1000, 1080, 1140, 1200, 1280, 1360];
|
||||
|
||||
private static array $PC_COLS_MAP = [
|
||||
'sm' => [3, 4],
|
||||
'md' => [4, 5, 6],
|
||||
'lg' => [6, 7, 8, 9],
|
||||
];
|
||||
|
||||
/**
|
||||
* Shell × Item 合法组合映射(poster/media/rank)
|
||||
*/
|
||||
private static array $ITEM_SHELL_MAP = [
|
||||
'poster' => ['B', 'D'],
|
||||
'media' => ['A', 'D'],
|
||||
'rank' => ['C'],
|
||||
];
|
||||
|
||||
/**
|
||||
* Item 编号 → Item 类型
|
||||
*/
|
||||
private static array $ITEM_TYPE_MAP = [
|
||||
'01' => 'poster',
|
||||
'02' => 'media',
|
||||
'03' => 'rank',
|
||||
'04' => 'poster',
|
||||
'05' => 'rank',
|
||||
];
|
||||
|
||||
/**
|
||||
* 模块语义 → Item 权重池
|
||||
*/
|
||||
private static array $MODULE_ITEM_WEIGHT = [
|
||||
'newest' => [
|
||||
'primary' => ['01', '04'],
|
||||
'secondary' => ['02'],
|
||||
'fallback' => ['01'],
|
||||
],
|
||||
'hot' => [
|
||||
'primary' => ['01', '04'],
|
||||
'secondary' => ['02'],
|
||||
'fallback' => ['01'],
|
||||
],
|
||||
'rank' => [
|
||||
'primary' => ['05'],
|
||||
'secondary' => ['03'],
|
||||
'fallback' => ['05'],
|
||||
],
|
||||
// 兜底模块
|
||||
'trending' => [
|
||||
'primary' => ['01', '04'],
|
||||
'secondary' => ['02'],
|
||||
'fallback' => ['01'],
|
||||
],
|
||||
'recommend' => [
|
||||
'primary' => ['01', '04'],
|
||||
'secondary' => ['02'],
|
||||
'fallback' => ['01'],
|
||||
],
|
||||
'category_list' => [
|
||||
'primary' => ['01'],
|
||||
'secondary' => ['02'],
|
||||
'fallback' => ['01'],
|
||||
],
|
||||
'search_list' => [
|
||||
'primary' => ['02'],
|
||||
'secondary' => ['01'],
|
||||
'fallback' => ['02'],
|
||||
],
|
||||
];
|
||||
|
||||
private static array $TITLE_POOL = [
|
||||
'newest' => [
|
||||
'primary' => ['最近更新','最新上线','新片速递','今日更新','新内容推荐'],
|
||||
'secondary' => ['第一时间为你呈现','每日持续更新','不错过任何新片','刚刚上线,抢先观看'],
|
||||
'seo' => ['最新电影电视剧更新','今日最新影视资源','新上线影视内容合集'],
|
||||
],
|
||||
'hot' => [
|
||||
'primary' => ['热门推荐','热播精选','人气必看','大家都在看'],
|
||||
'secondary' => ['近期热度持续攀升','高点击率影片推荐','口碑与热度兼具','当前最受欢迎内容'],
|
||||
'seo' => ['热门影视作品推荐','高人气电影电视剧合集','热播影视排行榜推荐'],
|
||||
],
|
||||
'rank' => [
|
||||
'primary' => ['排行榜','热度榜单','人气排行','播放榜'],
|
||||
'secondary' => ['数据实时更新','热度排序参考','近期播放趋势','高人气作品排行'],
|
||||
'seo' => ['影视排行榜前十名','热门电影电视剧排行','高播放量影视榜单'],
|
||||
],
|
||||
];
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
0
code/app/common/helper/style/BreadcrumbRule.php
Normal file
0
code/app/common/helper/style/BreadcrumbRule.php
Normal file
154
code/app/common/helper/style/DetailMainRule.php
Normal file
154
code/app/common/helper/style/DetailMainRule.php
Normal file
@@ -0,0 +1,154 @@
|
||||
<?php
|
||||
|
||||
namespace app\common\helper\style;
|
||||
|
||||
class DetailMainRule
|
||||
{
|
||||
public static function build(int $seed): array
|
||||
{
|
||||
$cover = self::compose(self::coverAtoms(), $seed + 23);
|
||||
$cover['extra'] = self::fillExtra($cover['extra'], $video);
|
||||
|
||||
return [
|
||||
'blocks' => [
|
||||
'title' => self::compose(self::titleAtoms(), $seed + 11),
|
||||
'cover' => $cover,
|
||||
'meta' => self::compose(self::metaAtoms(), $seed + 37),
|
||||
'desc' => self::compose(self::descAtoms(), $seed + 51),
|
||||
'action' => self::compose(self::actionAtoms(), $seed + 67),
|
||||
],
|
||||
'order' => self::pickOrder($seed),
|
||||
];
|
||||
}
|
||||
|
||||
/* ========= 原子池 ========= */
|
||||
|
||||
public static function titleAtoms(): array
|
||||
{
|
||||
return [
|
||||
'tag' => ['h1', 'h2'],
|
||||
'wrap' => ['none', 'header', 'div'],
|
||||
'show_year' => [true, false],
|
||||
'emphasis' => ['none', 'strong', 'em'],
|
||||
];
|
||||
}
|
||||
|
||||
public static function metaAtoms(): array
|
||||
{
|
||||
return [
|
||||
'layout' => ['ul', 'dl', 'inline'],
|
||||
'fields' => [
|
||||
['category', 'year', 'area'],
|
||||
['year', 'category'],
|
||||
['area', 'year'],
|
||||
],
|
||||
'separator' => [' / ', ' · '],
|
||||
];
|
||||
}
|
||||
|
||||
public static function descAtoms(): array
|
||||
{
|
||||
return [
|
||||
'container' => ['p', 'div', 'section'],
|
||||
'mode' => ['full', 'short'],
|
||||
'expandable' => [true, false],
|
||||
];
|
||||
}
|
||||
|
||||
public static function actionAtoms(): array
|
||||
{
|
||||
return [
|
||||
'type' => ['link', 'button', 'nav'],
|
||||
'show_hint' => [true, false],
|
||||
'text' => ['立即播放', '在线观看', '免费播放'],
|
||||
];
|
||||
}
|
||||
|
||||
// Cover Block 原子池
|
||||
public static function coverAtoms(): array
|
||||
{
|
||||
return [
|
||||
// 外层容器结构
|
||||
'container' => [
|
||||
'div.dm-cover',
|
||||
'figure.dm-cover',
|
||||
'div.dm-cover-bg',
|
||||
'section.dm-cover',
|
||||
],
|
||||
|
||||
// 图片表现形式
|
||||
'image' => [
|
||||
'img', // <img>
|
||||
'bg', // background-image
|
||||
],
|
||||
|
||||
// 附加元素
|
||||
'extra' => [
|
||||
'',
|
||||
'<span class="label">{remarks}</span>',
|
||||
'<figcaption>{remarks}</figcaption>',
|
||||
],
|
||||
|
||||
// 比例控制(CSS class)
|
||||
'ratio' => [
|
||||
'r23', // 2:3
|
||||
'r34', // 3:4
|
||||
'r11', // 1:1
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
/* ========= 组合器 ========= */
|
||||
|
||||
protected static function compose(array $atoms, int $seed): array
|
||||
{
|
||||
$pick = function (?array $list, int $shift, $default = null) use ($seed) {
|
||||
if (empty($list)) {
|
||||
return $default;
|
||||
}
|
||||
return $list[($seed >> $shift) % count($list)];
|
||||
};
|
||||
|
||||
return [
|
||||
'container' => $pick($atoms['container'] ?? null, 0),
|
||||
'image' => $pick($atoms['image'] ?? null, 2, 'img'),
|
||||
'extra' => $pick($atoms['extra'] ?? null, 4, ''),
|
||||
'ratio' => $pick($atoms['ratio'] ?? null, 6, ''),
|
||||
'fields' => $pick($atoms['fields'] ?? null, 8, []),
|
||||
'mode' => $pick($atoms['mode'] ?? null, 10, 'raw'),
|
||||
'trigger' => $pick($atoms['trigger'] ?? null, 12),
|
||||
'text' => $pick($atoms['text'] ?? null, 14, ''),
|
||||
'separator' => $pick($atoms['separator'] ?? null, 16, ' '),
|
||||
'expand' => $pick($atoms['expand'] ?? null, 18, false),
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
protected static function pickOrder(int $seed): array
|
||||
{
|
||||
$orders = [
|
||||
['title', 'cover', 'meta', 'desc', 'action'],
|
||||
['cover', 'title', 'meta', 'desc'],
|
||||
['title', 'meta', 'desc', 'cover', 'action'],
|
||||
['meta', 'title', 'cover', 'desc'],
|
||||
];
|
||||
return $orders[$seed % count($orders)];
|
||||
}
|
||||
|
||||
protected static function fillExtra(string $extra, array $video): string
|
||||
{
|
||||
if ($extra === '') {
|
||||
return '';
|
||||
}
|
||||
|
||||
return str_replace(
|
||||
['{remarks}', '{year}', '{name}'],
|
||||
[
|
||||
$video['v_remarks'] ?? '',
|
||||
$video['v_year'] ?? '',
|
||||
$video['v_name'] ?? '',
|
||||
],
|
||||
$extra
|
||||
);
|
||||
}
|
||||
}
|
||||
0
code/app/common/helper/style/ListRule.php
Normal file
0
code/app/common/helper/style/ListRule.php
Normal file
0
code/app/common/helper/style/PlayLineRule.php
Normal file
0
code/app/common/helper/style/PlayLineRule.php
Normal file
0
code/app/common/helper/style/SeoWordsRule.php
Normal file
0
code/app/common/helper/style/SeoWordsRule.php
Normal file
@@ -159,7 +159,6 @@ href='https://{$DomainModel->d_domain}{site:vpurl v_id="$arrVideo.v_id" v_py="$a
|
||||
|
||||
<div class="dplayer-prent">
|
||||
<div id="dplayer" class="dplayer" muted=“muted” style="margin-top: 5px;"></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="stui-player__detail detail">
|
||||
|
||||
@@ -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>
|
||||
39
code/app/home/view/videoGpt1/footer/foot_a.html
Normal file
39
code/app/home/view/videoGpt1/footer/foot_a.html
Normal file
@@ -0,0 +1,39 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-fA-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-fA-links">
|
||||
{if $i == 1}
|
||||
<span>友情链接:</span>
|
||||
{/if}
|
||||
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">
|
||||
{$ad.gg_wen_zi}
|
||||
</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-fA-sitemap">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-fA-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-fA-desc">
|
||||
本站内容整理自网络,仅供学习与交流使用,
|
||||
如有侵权或不当内容,请联系我们处理。
|
||||
</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-fA-email">
|
||||
联系邮箱:{$strEmail}
|
||||
</p>
|
||||
{/if}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-fA-cr">
|
||||
© 2008–2025 {$DomainModel->d_name} · All Rights Reserved
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
44
code/app/home/view/videoGpt1/footer/foot_b.html
Normal file
44
code/app/home/view/videoGpt1/footer/foot_b.html
Normal file
@@ -0,0 +1,44 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-fB-wrap">
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-fB-main">
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-fB-left">
|
||||
<p class="{$TpStyle.dom_prefix}-fB-desc">
|
||||
{$DomainModel->d_name} 提供影视内容索引与信息展示,
|
||||
资源来源于互联网公开渠道。
|
||||
</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-fB-email">
|
||||
联系邮箱:{$strEmail}
|
||||
</p>
|
||||
{/if}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-fB-cr">
|
||||
© 2008–2025 {$DomainModel->d_name}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-fB-right">
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-fB-sitemap">
|
||||
<a href="/sitemap.html">网站地图</a>
|
||||
<a href="/rss/baidu.xml">百度</a>
|
||||
<a href="/rss/so.xml">360</a>
|
||||
<a href="/sitemap_index.xml">XML</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-fB-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">
|
||||
{$ad.gg_wen_zi}
|
||||
</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
29
code/app/home/view/videoGpt1/footer/foot_c.html
Normal file
29
code/app/home/view/videoGpt1/footer/foot_c.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-fC-wrap">
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-fC-block">
|
||||
<strong>{$DomainModel->d_name}</strong>
|
||||
<p>本站提供影视内容导航与信息索引服务。</p>
|
||||
{if $strEmail}
|
||||
<p>联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-fC-block">
|
||||
<nav>
|
||||
<a href="/sitemap.html">网站地图</a>
|
||||
<a href="/rss/baidu.xml">百度</a>
|
||||
<a href="/rss/so.xml">360</a>
|
||||
<a href="/sitemap_index.xml">XML</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-fC-block">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">
|
||||
{$ad.gg_wen_zi}
|
||||
</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
</footer>
|
||||
20
code/app/home/view/videoGpt1/footer/foot_d.html
Normal file
20
code/app/home/view/videoGpt1/footer/foot_d.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-fD-wrap">
|
||||
|
||||
<p>
|
||||
<a href="/sitemap.html">地图</a> ·
|
||||
<a href="/rss/baidu.xml">百度</a> ·
|
||||
<a href="/rss/so.xml">360</a> ·
|
||||
<a href="/sitemap_index.xml">XML</a>
|
||||
</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p>联系:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p>
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
</footer>
|
||||
24
code/app/home/view/videoGpt1/footer/foot_e.html
Normal file
24
code/app/home/view/videoGpt1/footer/foot_e.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-fE-wrap">
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-fE-title">
|
||||
{$DomainModel->d_name}
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-fE-desc">
|
||||
本站仅提供信息展示与索引服务,内容来源于网络。
|
||||
</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-fE-email">
|
||||
邮箱联系:{$strEmail}
|
||||
</p>
|
||||
{/if}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-fE-sitemap">
|
||||
<a href="/sitemap.html">网站地图</a>
|
||||
<a href="/rss/baidu.xml">百度</a>
|
||||
<a href="/rss/so.xml">360</a>
|
||||
<a href="/sitemap_index.xml">XML</a>
|
||||
</nav>
|
||||
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_01.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_01.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f01-a-w9if7-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f01-a-w9if7-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f01-a-w9if7-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f01-a-w9if7-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f01-a-w9if7-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f01-a-w9if7-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f01-a-w9if7-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_02.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_02.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f02-b-qjynf-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f02-b-qjynf-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f02-b-qjynf-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f02-b-qjynf-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f02-b-qjynf-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f02-b-qjynf-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f02-b-qjynf-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f02-b-qjynf-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f02-b-qjynf-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f02-b-qjynf-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_03.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_03.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f03-c-41n16-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f03-c-41n16-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f03-c-41n16-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f03-c-41n16-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f03-c-41n16-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f03-c-41n16-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f03-c-41n16-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f03-c-41n16-card {$TpStyle.dom_prefix}-f03-c-41n16-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f03-c-41n16-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f03-c-41n16-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_04.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_04.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f04-d-c60lx-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f04-d-c60lx-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f04-d-c60lx-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f04-d-c60lx-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f04-d-c60lx-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f04-d-c60lx-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_05.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_05.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f05-e-ayc1q-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f05-e-ayc1q-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f05-e-ayc1q-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f05-e-ayc1q-desc">内容来源于网络收集与整理,如有侵权请联系处理。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f05-e-ayc1q-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f05-e-ayc1q-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f05-e-ayc1q-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f05-e-ayc1q-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_06.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_06.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f06-a-oxm31-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f06-a-oxm31-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f06-a-oxm31-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f06-a-oxm31-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f06-a-oxm31-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f06-a-oxm31-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f06-a-oxm31-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_07.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_07.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f07-b-xwk0s-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f07-b-xwk0s-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f07-b-xwk0s-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f07-b-xwk0s-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f07-b-xwk0s-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f07-b-xwk0s-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f07-b-xwk0s-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f07-b-xwk0s-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f07-b-xwk0s-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f07-b-xwk0s-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_08.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_08.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f08-c-59sd9-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f08-c-59sd9-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f08-c-59sd9-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f08-c-59sd9-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f08-c-59sd9-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f08-c-59sd9-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f08-c-59sd9-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f08-c-59sd9-card {$TpStyle.dom_prefix}-f08-c-59sd9-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f08-c-59sd9-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f08-c-59sd9-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_09.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_09.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f09-d-gc625-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f09-d-gc625-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f09-d-gc625-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f09-d-gc625-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f09-d-gc625-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f09-d-gc625-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_10.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_10.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f10-e-k85lo-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f10-e-k85lo-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f10-e-k85lo-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f10-e-k85lo-desc">内容来源于网络收集与整理,如有侵权请联系处理。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f10-e-k85lo-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f10-e-k85lo-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f10-e-k85lo-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f10-e-k85lo-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_100.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_100.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f100-e-u00sr-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f100-e-u00sr-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f100-e-u00sr-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f100-e-u00sr-desc">内容来源于网络收集与整理,如有侵权请联系处理。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f100-e-u00sr-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f100-e-u00sr-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f100-e-u00sr-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f100-e-u00sr-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_11.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_11.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f11-a-0bn0c-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f11-a-0bn0c-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f11-a-0bn0c-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f11-a-0bn0c-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f11-a-0bn0c-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f11-a-0bn0c-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f11-a-0bn0c-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_12.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_12.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f12-b-ly8o4-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f12-b-ly8o4-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f12-b-ly8o4-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f12-b-ly8o4-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f12-b-ly8o4-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f12-b-ly8o4-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f12-b-ly8o4-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f12-b-ly8o4-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f12-b-ly8o4-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f12-b-ly8o4-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_13.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_13.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f13-c-8qj13-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f13-c-8qj13-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f13-c-8qj13-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f13-c-8qj13-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f13-c-8qj13-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f13-c-8qj13-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f13-c-8qj13-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f13-c-8qj13-card {$TpStyle.dom_prefix}-f13-c-8qj13-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f13-c-8qj13-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f13-c-8qj13-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_14.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_14.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f14-d-0sd1h-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f14-d-0sd1h-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f14-d-0sd1h-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f14-d-0sd1h-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f14-d-0sd1h-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f14-d-0sd1h-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_15.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_15.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f15-e-hp3a8-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f15-e-hp3a8-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f15-e-hp3a8-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f15-e-hp3a8-desc">内容来源于网络收集与整理,如有侵权请联系处理。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f15-e-hp3a8-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f15-e-hp3a8-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f15-e-hp3a8-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f15-e-hp3a8-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_16.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_16.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f16-a-ieco1-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f16-a-ieco1-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f16-a-ieco1-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f16-a-ieco1-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f16-a-ieco1-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f16-a-ieco1-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f16-a-ieco1-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_17.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_17.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f17-b-jft9d-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f17-b-jft9d-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f17-b-jft9d-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f17-b-jft9d-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f17-b-jft9d-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f17-b-jft9d-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f17-b-jft9d-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f17-b-jft9d-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f17-b-jft9d-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f17-b-jft9d-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_18.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_18.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f18-c-oblvs-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f18-c-oblvs-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f18-c-oblvs-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f18-c-oblvs-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f18-c-oblvs-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f18-c-oblvs-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f18-c-oblvs-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f18-c-oblvs-card {$TpStyle.dom_prefix}-f18-c-oblvs-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f18-c-oblvs-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f18-c-oblvs-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_19.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_19.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f19-d-gm290-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f19-d-gm290-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f19-d-gm290-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f19-d-gm290-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f19-d-gm290-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f19-d-gm290-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_20.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_20.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f20-e-sm9yp-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f20-e-sm9yp-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f20-e-sm9yp-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f20-e-sm9yp-desc">本站仅做信息展示与导航,相关内容请自行甄别。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f20-e-sm9yp-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f20-e-sm9yp-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f20-e-sm9yp-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f20-e-sm9yp-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_21.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_21.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f21-a-l6lch-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f21-a-l6lch-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f21-a-l6lch-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f21-a-l6lch-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f21-a-l6lch-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f21-a-l6lch-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f21-a-l6lch-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_22.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_22.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f22-b-w8nwq-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f22-b-w8nwq-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f22-b-w8nwq-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f22-b-w8nwq-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f22-b-w8nwq-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f22-b-w8nwq-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f22-b-w8nwq-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f22-b-w8nwq-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f22-b-w8nwq-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f22-b-w8nwq-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_23.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_23.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f23-c-jufky-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f23-c-jufky-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f23-c-jufky-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f23-c-jufky-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f23-c-jufky-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f23-c-jufky-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f23-c-jufky-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f23-c-jufky-card {$TpStyle.dom_prefix}-f23-c-jufky-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f23-c-jufky-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f23-c-jufky-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_24.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_24.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f24-d-v0ifo-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f24-d-v0ifo-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f24-d-v0ifo-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f24-d-v0ifo-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f24-d-v0ifo-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f24-d-v0ifo-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_25.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_25.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f25-e-3qv6u-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f25-e-3qv6u-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f25-e-3qv6u-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f25-e-3qv6u-desc">本站不存储任何资源,仅提供聚合与检索入口。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f25-e-3qv6u-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f25-e-3qv6u-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f25-e-3qv6u-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f25-e-3qv6u-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_26.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_26.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f26-a-w3403-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f26-a-w3403-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f26-a-w3403-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f26-a-w3403-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f26-a-w3403-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f26-a-w3403-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f26-a-w3403-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_27.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_27.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f27-b-lfuwy-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f27-b-lfuwy-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f27-b-lfuwy-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f27-b-lfuwy-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f27-b-lfuwy-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f27-b-lfuwy-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f27-b-lfuwy-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f27-b-lfuwy-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f27-b-lfuwy-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f27-b-lfuwy-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_28.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_28.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f28-c-b4ppi-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f28-c-b4ppi-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f28-c-b4ppi-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f28-c-b4ppi-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f28-c-b4ppi-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f28-c-b4ppi-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f28-c-b4ppi-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f28-c-b4ppi-card {$TpStyle.dom_prefix}-f28-c-b4ppi-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f28-c-b4ppi-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f28-c-b4ppi-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_29.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_29.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f29-d-ke11f-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f29-d-ke11f-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f29-d-ke11f-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f29-d-ke11f-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f29-d-ke11f-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f29-d-ke11f-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_30.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_30.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f30-e-3pk2m-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f30-e-3pk2m-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f30-e-3pk2m-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f30-e-3pk2m-desc">本站内容整理自网络,仅供学习与交流使用。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f30-e-3pk2m-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f30-e-3pk2m-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f30-e-3pk2m-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f30-e-3pk2m-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_31.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_31.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f31-a-sl6mj-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f31-a-sl6mj-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f31-a-sl6mj-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f31-a-sl6mj-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f31-a-sl6mj-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f31-a-sl6mj-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f31-a-sl6mj-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_32.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_32.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f32-b-da2ra-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f32-b-da2ra-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f32-b-da2ra-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f32-b-da2ra-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f32-b-da2ra-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f32-b-da2ra-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f32-b-da2ra-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f32-b-da2ra-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f32-b-da2ra-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f32-b-da2ra-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_33.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_33.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f33-c-jw7yq-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f33-c-jw7yq-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f33-c-jw7yq-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f33-c-jw7yq-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f33-c-jw7yq-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f33-c-jw7yq-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f33-c-jw7yq-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f33-c-jw7yq-card {$TpStyle.dom_prefix}-f33-c-jw7yq-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f33-c-jw7yq-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f33-c-jw7yq-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_34.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_34.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f34-d-uso4g-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f34-d-uso4g-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f34-d-uso4g-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f34-d-uso4g-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f34-d-uso4g-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f34-d-uso4g-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_35.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_35.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f35-e-4v4cx-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f35-e-4v4cx-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f35-e-4v4cx-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f35-e-4v4cx-desc">内容来源于网络收集与整理,如有侵权请联系处理。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f35-e-4v4cx-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f35-e-4v4cx-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f35-e-4v4cx-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f35-e-4v4cx-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_36.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_36.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f36-a-hlq0i-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f36-a-hlq0i-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f36-a-hlq0i-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f36-a-hlq0i-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f36-a-hlq0i-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f36-a-hlq0i-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f36-a-hlq0i-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_37.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_37.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f37-b-qcaky-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f37-b-qcaky-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f37-b-qcaky-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f37-b-qcaky-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f37-b-qcaky-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f37-b-qcaky-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f37-b-qcaky-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f37-b-qcaky-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f37-b-qcaky-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f37-b-qcaky-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_38.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_38.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f38-c-tjo6m-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f38-c-tjo6m-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f38-c-tjo6m-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f38-c-tjo6m-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f38-c-tjo6m-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f38-c-tjo6m-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f38-c-tjo6m-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f38-c-tjo6m-card {$TpStyle.dom_prefix}-f38-c-tjo6m-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f38-c-tjo6m-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f38-c-tjo6m-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_39.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_39.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f39-d-ncbyx-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f39-d-ncbyx-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f39-d-ncbyx-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f39-d-ncbyx-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f39-d-ncbyx-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f39-d-ncbyx-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_40.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_40.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f40-e-vnl0t-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f40-e-vnl0t-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f40-e-vnl0t-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f40-e-vnl0t-desc">本站内容整理自网络,仅供学习与交流使用。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f40-e-vnl0t-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f40-e-vnl0t-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f40-e-vnl0t-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f40-e-vnl0t-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_41.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_41.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f41-a-1sbmo-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f41-a-1sbmo-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f41-a-1sbmo-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f41-a-1sbmo-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f41-a-1sbmo-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f41-a-1sbmo-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f41-a-1sbmo-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_42.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_42.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f42-b-wnjnr-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f42-b-wnjnr-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f42-b-wnjnr-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f42-b-wnjnr-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f42-b-wnjnr-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f42-b-wnjnr-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f42-b-wnjnr-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f42-b-wnjnr-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f42-b-wnjnr-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f42-b-wnjnr-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_43.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_43.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f43-c-71b8w-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f43-c-71b8w-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f43-c-71b8w-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f43-c-71b8w-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f43-c-71b8w-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f43-c-71b8w-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f43-c-71b8w-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f43-c-71b8w-card {$TpStyle.dom_prefix}-f43-c-71b8w-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f43-c-71b8w-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f43-c-71b8w-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_44.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_44.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f44-d-n4cci-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f44-d-n4cci-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f44-d-n4cci-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f44-d-n4cci-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f44-d-n4cci-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f44-d-n4cci-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_45.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_45.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f45-e-5n5uc-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f45-e-5n5uc-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f45-e-5n5uc-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f45-e-5n5uc-desc">内容来源于网络收集与整理,如有侵权请联系处理。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f45-e-5n5uc-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f45-e-5n5uc-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f45-e-5n5uc-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f45-e-5n5uc-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_46.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_46.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f46-a-h30k7-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f46-a-h30k7-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f46-a-h30k7-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f46-a-h30k7-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f46-a-h30k7-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f46-a-h30k7-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f46-a-h30k7-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_47.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_47.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f47-b-3qyie-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f47-b-3qyie-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f47-b-3qyie-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f47-b-3qyie-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f47-b-3qyie-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f47-b-3qyie-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f47-b-3qyie-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f47-b-3qyie-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f47-b-3qyie-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f47-b-3qyie-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_48.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_48.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f48-c-g7ldn-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f48-c-g7ldn-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f48-c-g7ldn-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f48-c-g7ldn-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f48-c-g7ldn-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f48-c-g7ldn-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f48-c-g7ldn-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f48-c-g7ldn-card {$TpStyle.dom_prefix}-f48-c-g7ldn-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f48-c-g7ldn-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f48-c-g7ldn-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_49.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_49.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f49-d-aaerx-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f49-d-aaerx-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f49-d-aaerx-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f49-d-aaerx-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f49-d-aaerx-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f49-d-aaerx-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_50.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_50.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f50-e-y7s9i-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f50-e-y7s9i-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f50-e-y7s9i-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f50-e-y7s9i-desc">本站仅做信息展示与导航,相关内容请自行甄别。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f50-e-y7s9i-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f50-e-y7s9i-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f50-e-y7s9i-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f50-e-y7s9i-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_51.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_51.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f51-a-m8b1s-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f51-a-m8b1s-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f51-a-m8b1s-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f51-a-m8b1s-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f51-a-m8b1s-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f51-a-m8b1s-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f51-a-m8b1s-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_52.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_52.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f52-b-24r8y-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f52-b-24r8y-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f52-b-24r8y-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f52-b-24r8y-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f52-b-24r8y-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f52-b-24r8y-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f52-b-24r8y-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f52-b-24r8y-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f52-b-24r8y-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f52-b-24r8y-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_53.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_53.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f53-c-cojlk-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f53-c-cojlk-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f53-c-cojlk-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f53-c-cojlk-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f53-c-cojlk-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f53-c-cojlk-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f53-c-cojlk-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f53-c-cojlk-card {$TpStyle.dom_prefix}-f53-c-cojlk-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f53-c-cojlk-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f53-c-cojlk-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_54.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_54.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f54-d-9sxsl-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f54-d-9sxsl-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f54-d-9sxsl-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f54-d-9sxsl-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f54-d-9sxsl-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f54-d-9sxsl-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_55.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_55.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f55-e-785z3-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f55-e-785z3-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f55-e-785z3-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f55-e-785z3-desc">内容来源于网络收集与整理,如有侵权请联系处理。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f55-e-785z3-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f55-e-785z3-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f55-e-785z3-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f55-e-785z3-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_56.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_56.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f56-a-duwcq-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f56-a-duwcq-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f56-a-duwcq-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f56-a-duwcq-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f56-a-duwcq-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f56-a-duwcq-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f56-a-duwcq-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_57.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_57.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f57-b-kowkj-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f57-b-kowkj-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f57-b-kowkj-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f57-b-kowkj-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f57-b-kowkj-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f57-b-kowkj-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f57-b-kowkj-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f57-b-kowkj-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f57-b-kowkj-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f57-b-kowkj-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_58.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_58.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f58-c-mqbmy-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f58-c-mqbmy-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f58-c-mqbmy-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f58-c-mqbmy-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f58-c-mqbmy-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f58-c-mqbmy-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f58-c-mqbmy-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f58-c-mqbmy-card {$TpStyle.dom_prefix}-f58-c-mqbmy-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f58-c-mqbmy-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f58-c-mqbmy-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_59.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_59.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f59-d-qv0wh-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f59-d-qv0wh-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f59-d-qv0wh-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f59-d-qv0wh-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f59-d-qv0wh-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f59-d-qv0wh-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_60.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_60.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f60-e-belsk-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f60-e-belsk-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f60-e-belsk-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f60-e-belsk-desc">内容来源于网络收集与整理,如有侵权请联系处理。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f60-e-belsk-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f60-e-belsk-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f60-e-belsk-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f60-e-belsk-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_61.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_61.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f61-a-9wr8f-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f61-a-9wr8f-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f61-a-9wr8f-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f61-a-9wr8f-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f61-a-9wr8f-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f61-a-9wr8f-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f61-a-9wr8f-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_62.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_62.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f62-b-sct72-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f62-b-sct72-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f62-b-sct72-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f62-b-sct72-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f62-b-sct72-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f62-b-sct72-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f62-b-sct72-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f62-b-sct72-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f62-b-sct72-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f62-b-sct72-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_63.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_63.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f63-c-zkp2n-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f63-c-zkp2n-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f63-c-zkp2n-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f63-c-zkp2n-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f63-c-zkp2n-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f63-c-zkp2n-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f63-c-zkp2n-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f63-c-zkp2n-card {$TpStyle.dom_prefix}-f63-c-zkp2n-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f63-c-zkp2n-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f63-c-zkp2n-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_64.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_64.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f64-d-09glb-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f64-d-09glb-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f64-d-09glb-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f64-d-09glb-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f64-d-09glb-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f64-d-09glb-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_65.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_65.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f65-e-ekfys-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f65-e-ekfys-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f65-e-ekfys-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f65-e-ekfys-desc">本站仅做信息展示与导航,相关内容请自行甄别。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f65-e-ekfys-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f65-e-ekfys-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f65-e-ekfys-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f65-e-ekfys-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_66.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_66.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f66-a-skprj-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f66-a-skprj-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f66-a-skprj-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f66-a-skprj-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f66-a-skprj-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f66-a-skprj-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f66-a-skprj-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_67.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_67.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f67-b-v2kxo-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f67-b-v2kxo-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f67-b-v2kxo-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f67-b-v2kxo-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f67-b-v2kxo-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f67-b-v2kxo-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f67-b-v2kxo-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f67-b-v2kxo-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f67-b-v2kxo-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f67-b-v2kxo-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_68.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_68.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f68-c-ynrud-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f68-c-ynrud-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f68-c-ynrud-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f68-c-ynrud-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f68-c-ynrud-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f68-c-ynrud-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f68-c-ynrud-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f68-c-ynrud-card {$TpStyle.dom_prefix}-f68-c-ynrud-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f68-c-ynrud-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f68-c-ynrud-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_69.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_69.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f69-d-4ep9s-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f69-d-4ep9s-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f69-d-4ep9s-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f69-d-4ep9s-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f69-d-4ep9s-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f69-d-4ep9s-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_70.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_70.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f70-e-nu4rx-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f70-e-nu4rx-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f70-e-nu4rx-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f70-e-nu4rx-desc">本站仅做信息展示与导航,相关内容请自行甄别。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f70-e-nu4rx-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f70-e-nu4rx-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f70-e-nu4rx-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f70-e-nu4rx-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_71.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_71.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f71-a-s7yjo-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f71-a-s7yjo-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f71-a-s7yjo-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f71-a-s7yjo-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f71-a-s7yjo-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f71-a-s7yjo-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f71-a-s7yjo-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_72.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_72.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f72-b-jyqvj-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f72-b-jyqvj-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f72-b-jyqvj-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f72-b-jyqvj-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a>
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f72-b-jyqvj-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f72-b-jyqvj-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f72-b-jyqvj-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f72-b-jyqvj-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f72-b-jyqvj-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f72-b-jyqvj-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_73.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_73.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f73-c-3dbrx-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f73-c-3dbrx-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f73-c-3dbrx-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f73-c-3dbrx-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f73-c-3dbrx-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f73-c-3dbrx-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f73-c-3dbrx-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f73-c-3dbrx-card {$TpStyle.dom_prefix}-f73-c-3dbrx-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f73-c-3dbrx-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f73-c-3dbrx-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_74.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_74.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f74-d-2dx98-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f74-d-2dx98-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f74-d-2dx98-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f74-d-2dx98-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f74-d-2dx98-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f74-d-2dx98-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_75.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_75.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f75-e-ka94i-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f75-e-ka94i-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f75-e-ka94i-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f75-e-ka94i-desc">本站内容整理自网络,仅供学习与交流使用。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f75-e-ka94i-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f75-e-ka94i-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f75-e-ka94i-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f75-e-ka94i-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_76.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_76.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f76-a-lzdgd-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f76-a-lzdgd-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f76-a-lzdgd-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f76-a-lzdgd-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f76-a-lzdgd-desc">本站不存储任何资源,仅提供聚合与检索入口。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f76-a-lzdgd-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f76-a-lzdgd-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_77.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_77.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f77-b-w8x4d-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f77-b-w8x4d-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f77-b-w8x4d-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f77-b-w8x4d-map">
|
||||
<a href="/sitemap.html" target="_blank">网站导航</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度地图</a>
|
||||
<a href="/rss/so.xml" target="_blank">360地图</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f77-b-w8x4d-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f77-b-w8x4d-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f77-b-w8x4d-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f77-b-w8x4d-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f77-b-w8x4d-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f77-b-w8x4d-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_78.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_78.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f78-c-r524o-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f78-c-r524o-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f78-c-r524o-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f78-c-r524o-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f78-c-r524o-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f78-c-r524o-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f78-c-r524o-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f78-c-r524o-card {$TpStyle.dom_prefix}-f78-c-r524o-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f78-c-r524o-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f78-c-r524o-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
22
code/app/home/view/videoGpt1/footer/footer_79.html
Normal file
22
code/app/home/view/videoGpt1/footer/footer_79.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f79-d-ropmt-mini">
|
||||
<p class="{$TpStyle.dom_prefix}-f79-d-ropmt-map">
|
||||
<a href="/sitemap.html" target="_blank">地图入口</a> ·
|
||||
<a href="/rss/baidu.xml" target="_blank">百度索引</a> ·
|
||||
<a href="/rss/so.xml" target="_blank">360索引</a> ·
|
||||
<a href="/sitemap_index.xml" target="_blank">XML索引</a>
|
||||
</p>
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f79-d-ropmt-desc">本站提供内容索引服务,资源信息来自互联网公开渠道。</p>
|
||||
|
||||
{if $strEmail}
|
||||
<p class="{$TpStyle.dom_prefix}-f79-d-ropmt-email">联系邮箱:{$strEmail}</p>
|
||||
{/if}
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="4" id="ad"}
|
||||
<p class="{$TpStyle.dom_prefix}-f79-d-ropmt-links">
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</p>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f79-d-ropmt-cr">Copyright © 2008-2025 {$DomainModel->d_name}</p>
|
||||
</footer>
|
||||
23
code/app/home/view/videoGpt1/footer/footer_80.html
Normal file
23
code/app/home/view/videoGpt1/footer/footer_80.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f80-e-elpjd-info">
|
||||
<address class="{$TpStyle.dom_prefix}-f80-e-elpjd-addr">
|
||||
<span class="{$TpStyle.dom_prefix}-f80-e-elpjd-brand">{$DomainModel->d_name}</span>
|
||||
<span class="{$TpStyle.dom_prefix}-f80-e-elpjd-desc">内容来源于网络收集与整理,如有侵权请联系处理。</span>
|
||||
{if $strEmail}<span class="{$TpStyle.dom_prefix}-f80-e-elpjd-email">联系邮箱:{$strEmail}</span>{/if}
|
||||
</address>
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f80-e-elpjd-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f80-e-elpjd-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<p class="{$TpStyle.dom_prefix}-f80-e-elpjd-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</footer>
|
||||
21
code/app/home/view/videoGpt1/footer/footer_81.html
Normal file
21
code/app/home/view/videoGpt1/footer/footer_81.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f81-a-4v256-wrap">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="10" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f81-a-4v256-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<nav class="{$TpStyle.dom_prefix}-f81-a-4v256-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f81-a-4v256-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f81-a-4v256-desc">内容来源于网络收集与整理,如有侵权请联系处理。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f81-a-4v256-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f81-a-4v256-cr">© 2008–2025 {$DomainModel->d_name} · All Rights Reserved</p>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_82.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_82.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f82-b-8ytwc-shell">
|
||||
<div class="{$TpStyle.dom_prefix}-f82-b-8ytwc-grid">
|
||||
<section class="{$TpStyle.dom_prefix}-f82-b-8ytwc-left">
|
||||
<nav class="{$TpStyle.dom_prefix}-f82-b-8ytwc-map">
|
||||
<a href="/sitemap.html" target="_blank">站点地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度Sitemap</a>
|
||||
<a href="/rss/so.xml" target="_blank">360Sitemap</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML地图</a>
|
||||
</nav>
|
||||
<p class="{$TpStyle.dom_prefix}-f82-b-8ytwc-desc">本站仅做信息展示与导航,相关内容请自行甄别。</p>
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f82-b-8ytwc-right">
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="8" id="ad"}
|
||||
<div class="{$TpStyle.dom_prefix}-f82-b-8ytwc-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</div>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f82-b-8ytwc-copy">
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f82-b-8ytwc-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
<p class="{$TpStyle.dom_prefix}-f82-b-8ytwc-cr">© 2009–2025 {$DomainModel->d_name}</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
27
code/app/home/view/videoGpt1/footer/footer_83.html
Normal file
27
code/app/home/view/videoGpt1/footer/footer_83.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<footer class="{$TpStyle.dom_prefix}-f83-c-fv7qp-wrap">
|
||||
<section class="{$TpStyle.dom_prefix}-f83-c-fv7qp-card">
|
||||
<strong class="{$TpStyle.dom_prefix}-f83-c-fv7qp-brand">{$DomainModel->d_name}</strong>
|
||||
<p class="{$TpStyle.dom_prefix}-f83-c-fv7qp-desc">本站内容整理自网络,仅供学习与交流使用。</p>
|
||||
{if $strEmail}<p class="{$TpStyle.dom_prefix}-f83-c-fv7qp-email">联系邮箱:{$strEmail}</p>{/if}
|
||||
</section>
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-f83-c-fv7qp-card">
|
||||
<nav class="{$TpStyle.dom_prefix}-f83-c-fv7qp-map">
|
||||
<a href="/sitemap.html" target="_blank">网站地图</a>
|
||||
<a href="/rss/baidu.xml" target="_blank">百度收录</a>
|
||||
<a href="/rss/so.xml" target="_blank">360收录</a>
|
||||
<a href="/sitemap_index.xml" target="_blank">XML Sitemap</a>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
{ad:list code="$strYouQingLiangJieTemp" limit="6" id="ad"}
|
||||
<section class="{$TpStyle.dom_prefix}-f83-c-fv7qp-card {$TpStyle.dom_prefix}-f83-c-fv7qp-links">
|
||||
{if $i == 1}<span>友情链接:</span>{/if}
|
||||
<a href="{$ad.gg_tiao_zhuan_di_zhi}" target="_blank" rel="nofollow">{$ad.gg_wen_zi}</a>
|
||||
</section>
|
||||
{/ad:list}
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-f83-c-fv7qp-copy">
|
||||
<p class="{$TpStyle.dom_prefix}-f83-c-fv7qp-cr">{$DomainModel->d_name} © 2008–2025</p>
|
||||
</div>
|
||||
</footer>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user