search.html 999 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <#include "_layout.html"/> <@layout>
  2. <div class="x-pc-width clearfix x-margin-top-20 x-margin-bottom-20">
  3. <!-- -->
  4. <div class="x-pull-left x-layout-73 blog-sm-left">
  5. <@jp.searchResultPage pageSize="10" >
  6. 为您找到关键字 “${keyword!}” 的相关文章如下:
  7. <#list page.getList() as bean>
  8. <div class="x-white-box">
  9. <h3 class="x-box-title">
  10. <a class="x-a-active" href="${bean.url!}">${bean.title!}</a>
  11. <span class="x-title-border"></span>
  12. </h3>
  13. <p class="x-box-summary">${bean.description!}</p>
  14. </div>
  15. </#list>
  16. <ul class="x-page">
  17. <@pagination>
  18. <#list pages as pi>
  19. <li class="${pi.style!}">
  20. <a href="${pi.url!}">${pi.text!}</a>
  21. </li>
  22. </#list>
  23. </@pagination>
  24. </ul>
  25. </@jp.searchResultPage>
  26. </div>
  27. <!-- -->
  28. <div class="x-pull-right x-layout-25 blog-sm-right">
  29. <#include "_searcher_box.html"/>
  30. <#include "_content_box1.html"/>
  31. <#include "_content_box2.html"/>
  32. <#include "_tags_box.html"/>
  33. </div>
  34. </div>
  35. </@layout>