Files
BlackFruit-UI/clientarea/hgcloud/newsView.php
yiqiu 3b41cffbc9
All checks were successful
continuous-integration/drone/push Build is passing
feat: 会员中心 hgcloud 主题初始化 + drone 部署步骤
- 解压官方默认主题 default_yfMBA.tar.gz 到 clientarea/hgcloud/
- .gitignore 排除压缩包和临时解压目录
- drone 新增步骤: 同步 hgcloud 到 /clientarea/template/pc/
2026-03-19 17:56:44 +08:00

36 lines
1.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{include file="header"}
<link rel="stylesheet" href="/{$template_catalog}/template/{$themes}/css/news.css">
</head>
<body>
<div id="mainLoading">
<div class="ddr ddr1"></div>
<div class="ddr ddr2"></div>
<div class="ddr ddr3"></div>
<div class="ddr ddr4"></div>
<div class="ddr ddr5"></div>
</div>
<div id="content" class="template news news_detail" style="font-size: 0.14rem;">
<!-- pc端 -->
<div class="new-box">
<p class="tit">{{newDetail.title}}</p>
<p class="time">
{{lang.updatw_time}}{{newDetail.create_time | formateTime}} &nbsp;&nbsp;
{{lang.news_key}}{{newDetail.keywords || '--'}}
</p>
<shadow-content class="content" :content="calStr(newDetail.content)"></shadow-content>
<div class="news_annex" v-if="newDetail.attachment.length > 0">
<p>{{lang.news_annex}} </p>
<p v-for="(item,index) in newDetail.attachment" :key="index">
<a :href="item.url" target="_blank">
{{item.name}}
</a>
</p>
</div>
</div>
</div>
<script src="/{$template_catalog}/template/{$themes}/components/shadowContent/shadowContent.js"></script>
<script src="/{$template_catalog}/template/{$themes}/js/newsView.js"></script>
{include file="footer"}