Search_index.html 932 B

12345678910111213141516171819202122232425262728293031
  1. <div class="left">
  2. <div class="pos">{:L(catpos)}<a href="{:URL()}">{:L(home_font)}</a> > <YP:catpos catid="catid" space=" > " /> {:L(SEARCH_RESULTS)}</div>
  3. <div style="margin:12px;background:#EFEFEF;padding:10px;">
  4. <form method="GET" action="index.php?">
  5. <input type="hidden" id="" name="m" value="Search"/>{if APP_LANG}<input type="hidden" name="l" value="{:LANG_NAME}" />{/if}
  6. <input type="text" name="keyword" id="" class="input-text" value="{$keyword}" />
  7. {:Form::select(array('field'=>'module','options'=>$search_module),$module)}
  8. <input type="submit" class="button" value="{:L(SEARCH)}" />
  9. </form>
  10. </div>
  11. <div class="list">
  12. <ul class="txt">
  13. <volist name="list" id="r">
  14. <li><span class="date">[{$r.createtime|toDate=###,'Y-m-d'}]</span><a href="{$r.url}" target="_blank">{$r.title}</a></li>
  15. </volist>
  16. </ul></div>
  17. <div id="pages" class="page">{$pages}</div>
  18. <br>
  19. </div>