Clean up integration_search default skin

This commit is contained in:
Kijin Sung 2023-12-30 21:07:23 +09:00
parent 9175d51bd5
commit 9fae527d3f
9 changed files with 20 additions and 67 deletions

View file

@ -2,7 +2,7 @@
<h3 class="subTitle">{$lang->file} <span>({number_format($output->total_count)})</span></h3>
<!--@if(!count($output->data))-->
<!--@if(!$output->data)-->
<span class="noResult">{$lang->msg_no_result}</span>
<!--@else-->
<ul class="searchResult">
@ -18,10 +18,10 @@
<!--@if($where == 'file' && $output->page_navigation)-->
<div class="pagination a1">
<a href="{getUrl('page','')}" class="prevEnd">{$lang->first_page}</a>
<a href="{getUrl('page','')}" class="prevEnd">{$lang->first_page}</a>
<!--@while($page_no = $output->page_navigation->getNextPage())-->
<!--@if($page == $page_no)-->
<strong>{$page_no}</strong>
<strong>{$page_no}</strong>
<!--@else-->
<a href="{getUrl('page',$page_no)}">{$page_no}</a>
<!--@end-->