You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.8 KiB
37 lines
1.8 KiB
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<!-- Start Featured Product -->
|
|
<section class="bg-light">
|
|
<div class="container py-5">
|
|
<div class="row text-center py-3">
|
|
<div class="col-lg-6 m-auto">
|
|
<h1 class="h1 float-start">{$articles_cat.name|escape:html}</h1>
|
|
</div>
|
|
<div class="col-lg-6 m-auto ">
|
|
<div class="float-end"><a class="more" href="{$articles_cat.url}">查看更多></a></div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<!--{foreach from=$articles item=article_item name=article_item}-->
|
|
<div class="col-12 col-md-3 mb-4">
|
|
<div class="card h-100">
|
|
<a href="{$article_item.url}">
|
|
<img src="{$article_item.pic}" class="card-img-top" alt="...">
|
|
</a>
|
|
<div class="card-body">
|
|
<ul class="list-unstyled d-flex justify-content-between">
|
|
<li class="text-muted text-right">{$article_item.add_time}</li>
|
|
</ul>
|
|
<a href="{$article_item.url}" class="h2 text-decoration-none text-dark">
|
|
{$article_item.short_title}
|
|
</a>
|
|
<p class="card-text">
|
|
{if $article_item.description}[摘要]{$article_item.description|truncate:40}{/if}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--{/foreach}-->
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- End Featured Product --> |