sidebar.html 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <aside class="sidebar col-md-3 inner-right" role="complementary">
  2. <section class="widget side-search">
  3. <h3 class="title">
  4. 站内搜索
  5. </h3>
  6. <form role="search" method="get" id="searchform" class="searchform" action="query.html?">
  7. <input type="hidden" name="jpcode" value="query" />
  8. <div class="sform-div">
  9. <label class="screen-reader-text" for="s">
  10. </label>
  11. <input type="text" value="" name="keyword" placeholder="输入关键字" id="s"
  12. />
  13. <input type="submit" id="searchsubmit" value="查询" />
  14. </div>
  15. </form>
  16. </section>
  17. <script type="text/text/x-jquery-tmpl" id="body-temp">
  18. <section class="widget widget-category side-contact">
  19. <h3 class="title">
  20. ${title}
  21. </h3>
  22. {{html content}}
  23. </section>
  24. </script>
  25. <script type="text/text/x-jquery-tmpl" id="iblog-temp">
  26. <li>
  27. <figure>
  28. <a href="${link}"​>
  29. <img src="${logo}" />
  30. </a>
  31. </figure>
  32. <div class="sn-wrapper">
  33. <p class="s-desc">
  34. <a href="${link}"​ title="${title}">
  35. ${title}
  36. </a>
  37. </p>
  38. <span class="comments">
  39. <i class="fa fa-calendar">
  40. </i>
  41. &nbsp;${createTime}
  42. </span>
  43. <!--<span class="author">by: <a ​ >Admin</a></span>
  44. <a href="${link}"​ class="link-read-more">查看详细</a>-->
  45. </div>
  46. </li>
  47. </script>
  48. <div class="data-body" style="margin-bottom: 35px;">
  49. </div>
  50. <script>
  51. getIblog();
  52. function getIblog(){
  53. $.post(Constant.serverUrl+"api/mhdata/getList",{
  54. code:"XWZX%",pageSize:3
  55. },function(data,status){
  56. if(data.data.data){
  57. //aaa.find(".data-banner").append( $("#banner-temp").tmpl(data.data.data.data))
  58. $("#iblog-temp").tmpl(data.data.data.data).prependTo(".data-iblog")
  59. }
  60. })
  61. }
  62. </script>
  63. <section class="widget side-news">
  64. <h3 class="title">
  65. 最新新闻
  66. </h3>
  67. <div class="tabbed custom-tabbed">
  68. <div class="block current">
  69. <ul class="widget-list data-iblog">
  70. </ul>
  71. </div>
  72. </div>
  73. </section>
  74. </aside>