Browse Source

fix(history): 修复历史记录幻灯片描述内容显示问题

- 在模板渲染中添加 raw 过滤器以正确显示 HTML 内容
- 确保历史记录条目的描述内容能够按预期格式展示
- 保持现有的 strip_tags 过滤器功能同时支持原始 HTML 渲染
master
zhangf@suq.cn 2 weeks ago
parent
commit
d88a3b04af
  1. 2
      public/themes/website/1/zh/demo/about.html

2
public/themes/website/1/zh/demo/about.html

@ -121,7 +121,7 @@
<time class="ab-history__year" datetime="2025">{$case_top.sub_title}<span></span></time> <time class="ab-history__year" datetime="2025">{$case_top.sub_title}<span></span></time>
<div class="ab-history__dot" aria-hidden="true"></div> <div class="ab-history__dot" aria-hidden="true"></div>
<h3 class="ab-history__slide-title">{$case_top.title}</h3> <h3 class="ab-history__slide-title">{$case_top.title}</h3>
<p class="ab-history__slide-desc">{$case_top.content|strip_tags}</p>
<p class="ab-history__slide-desc">{$case_top.content|strip_tags|raw}</p>
<div class="ab-history__media"> <div class="ab-history__media">
<img src="{$case_top.thumbnail.url ?? ''}" alt="" width="400" height="260" loading="lazy" /> <img src="{$case_top.thumbnail.url ?? ''}" alt="" width="400" height="260" loading="lazy" />
</div> </div>

Loading…
Cancel
Save