63 lines
2.7 KiB
HTML
63 lines
2.7 KiB
HTML
<!--
|
|
* @Descripttion : FOXCMS是一款高效的PHP多端跨平台内容管理系统
|
|
* @Author : FoxCMS Team
|
|
* @Date : 2023-04-06 13:46:20
|
|
* @version : V1.08
|
|
* @copyright : ©2021-现在 贵州黔狐科技股份有限公司 版权所有
|
|
* @LastEditTime : 2024-02-23 14:12:40
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html lang="cn">
|
|
<head>
|
|
{include file="header"/}
|
|
<title>[$column.name]-{fox:basic name='title'/}</title>
|
|
<meta name="keywords" content="[$column.keywords]" />
|
|
<meta name="description" content="[$column.description]" />
|
|
</head>
|
|
<body>
|
|
<!-- 顶部 -->
|
|
<header class="foxui-border-bottom foxui-bg-white">{include file="nav"/}</header>
|
|
<!-- 主体内容 -->
|
|
<main>
|
|
<!-- 通栏图 -->
|
|
<div class="foxcms-common-banner foxui-bg-lighter">{include file="banner"/}</div>
|
|
<!-- 内容 -->
|
|
<div class="foxcms-main list-team-main foxui-bg-white">
|
|
<div class="foxcms-container">
|
|
<ul>
|
|
{fox:article name='field' }
|
|
<li class="wow slideInUp">
|
|
<a href="[$field.link]">
|
|
<div class="left">
|
|
<div class="pic">
|
|
<img src="[$field.img_url]" alt="" />
|
|
</div>
|
|
</div>
|
|
<div class="right">
|
|
<h1>
|
|
<strong>[$field.title]</strong>
|
|
<span class="foxui-text-capitalize">[$field.brief_title]</span>
|
|
</h1>
|
|
<h5>[$field.tags]</h5>
|
|
<p class="foxui-ellipsis-3">[$field.description]</p>
|
|
<div class="more">
|
|
<span>了解更多</span>
|
|
<i class="foxui-icon-xiangyou-o"></i>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</li>
|
|
{/fox:article}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- 右侧浮动内容 -->
|
|
<div class="foxcms-fixed-container">{include file="fixed"/}</div>
|
|
</main>
|
|
<!-- 底部 -->
|
|
<footer class="wow slideInUp">{include file="footer"/}</footer>
|
|
</body>
|
|
<script src="_STATIC_/skin/js/foxui-1.21.min.js"></script>
|
|
<script src="_STATIC_/skin/js/common.js"></script>
|
|
</html>
|