From e49e74c2be38ffe3b1b83bc1a0feb7fd954d316d Mon Sep 17 00:00:00 2001 From: peijunlei Date: Mon, 7 Sep 2026 10:06:12 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix(html):=20=E6=9B=B4=E6=96=B0=E9=A6=96?= =?UTF-8?q?=E9=A1=B5=E4=BA=A4=E4=BA=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/themes/website/1/en/demo/single_index.html | 8 ++++---- public/themes/website/1/zh/demo/single_index.html | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/public/themes/website/1/en/demo/single_index.html b/public/themes/website/1/en/demo/single_index.html index b88989b..d8f9675 100644 --- a/public/themes/website/1/en/demo/single_index.html +++ b/public/themes/website/1/en/demo/single_index.html @@ -80,10 +80,10 @@ {/hcTaglib:category} {if !empty($news[$key-1])} -
+ -
+ {/if} {/hcTaglib:content} diff --git a/public/themes/website/1/zh/demo/single_index.html b/public/themes/website/1/zh/demo/single_index.html index c018b29..d557036 100644 --- a/public/themes/website/1/zh/demo/single_index.html +++ b/public/themes/website/1/zh/demo/single_index.html @@ -80,10 +80,10 @@ {/hcTaglib:category} {if !empty($news[$key-1])} -
+ -
+ {/if} {/hcTaglib:content} From 783441dc9a49aa807372ef41d1b537c4ba617d0c Mon Sep 17 00:00:00 2001 From: xiaodong Date: Mon, 7 Sep 2026 10:08:58 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=96=B0=E9=97=BB=E9=A1=B5=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/themes/website/1/zh/demo/news.html | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/public/themes/website/1/zh/demo/news.html b/public/themes/website/1/zh/demo/news.html index f142c38..b6047cd 100644 --- a/public/themes/website/1/zh/demo/news.html +++ b/public/themes/website/1/zh/demo/news.html @@ -174,14 +174,9 @@ {volist name="hc_content" id="vo_content"} {php} - $content = $hc_content['content'] ?? ''; - $description = $hc_content['description'] ?? ''; - $create_time_int = $hc_content['create_time'] ?? ''; - $create_time_str = ''; - if(!empty($create_time_int)){ - $create_time_str = date('Y-m-d', $create_time_int); - } - // dd($hc_content->toArray());exit; + $content = $vo_content['content'] ?? ''; + $description = $vo_content['description'] ?? ''; + $create_time_str = $vo_content['create_time'] ?? ''; {/php}