feat: 文章相关

This commit is contained in:
2025-04-12 14:34:07 +08:00
parent fde19ef98c
commit 33d5242e60
7 changed files with 123 additions and 82 deletions

View File

@@ -4,67 +4,44 @@
{/block}
{block name="main"}
<div class="orico_Page_category">
<!--内容 -->
<!-- 内容 -->
<div class="categoryMain">
<img src="categoryImg/eng-blog.jpg" class="categorybgimg" />
<!-- 切换-->
<img src="{$banner.image}" class="categorybgimg" />
<!-- 切换 -->
<div class="tabs">
<div class="tabitme on">News</div>
<div class="tabitme">Blogs</div>
{volist name="categorys" id="ca"}
{if condition="$Request.get.cid == $ca.id || (!$Request.has.cid && $key == 0)"}
<a class="tabitme on" href="{:url('article/index', ['pid' => $ca.pid, 'cid' => $ca.id])}">
{else/}
<a class="tabitme" href="{:url('article/index', ['pid' => $ca.pid, 'cid' => $ca.id])}">
{/if}
{$ca.name}
</a>
{/volist}
</div>
<!--搜索-->
<!-- 搜索 -->
<div class="categorySearch">
<i class="search_icon"></i>
<input type="text" placeholder="Search" class="search" id="article-search-in" value="">
</div>
<!-- 切换内容-->
<!-- 切换内容 -->
{notempty name="articles"}
<div class="tabConten">
<div class="tbmain">
{volist name="articles" id="ar"}
<div class="Contenitem">
<a>
<img src="categoryImg/t1.jpg" />
<h3>ORICO Highlights Next-Gen Portable Data Storage and Charging Solution at Global
Sources Mobile Electronics 2024 Fall</h3>
<p>Hong Kong AsiaWorld-Expo, October 18-21, 2024 - A long-time Global Sources Mobile
Electronics exhibitor, ORICO made a splash at the show with its cutting-edge
next-generation portable data storage and...</p>
</a>
</div>
<div class="Contenitem">
<a>
<img src="categoryImg/t1.jpg" />
<h3>ORICO Highlights Next-Gen Portable Data Storage and Charging Solution at Global
Sources Mobile Electronics 2024 Fall</h3>
<p>Hong Kong AsiaWorld-Expo, October 18-21, 2024 - A long-time Global Sources Mobile
Electronics exhibitor, ORICO made a splash at the show with its cutting-edge
next-generation portable data storage and...</p>
</a>
</div>
<div class="Contenitem">
<a>
<img src="categoryImg/t1.jpg" />
<h3>ORICO Highlights Next-Gen Portable Data Storage and Charging Solution at Global
Sources Mobile Electronics 2024 Fall</h3>
<p>Hong Kong AsiaWorld-Expo, October 18-21, 2024 - A long-time Global Sources Mobile
Electronics exhibitor, ORICO made a splash at the show with its cutting-edge
next-generation portable data storage and...</p>
<img src="{$ar.image}" />
<h3>{$ar.title}</h3>
<p>{$ar.desc}</p>
</a>
</div>
{/volist}
</div>
<!-- 分页-->
<div class="Page">
<span class="p_page">
<a class="a_prev"></a>
<em class="num">
<a class="a_cur">1</a>
<a>2</a>
<a>3</a>
<a>4</a>
</em>
<a class="a_next"></a>
</span>
</div>
<div>{$articles|raw}</div>
</div>
{/notempty}
</div>
</div>
{/block}