forumdisplay.htm 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {eval
  2. function tpl_cloudsearch_forumdisplay_relatedlist($relatethreadlist, $urlkw) {
  3. global $_G;
  4. }
  5. <!--{block return}-->
  6. <!--{if $relatethreadlist}-->
  7. <div class="th">
  8. <table cellspacing="0" cellpadding="0">
  9. <tr>
  10. <th colspan="2">
  11. <div class="tf">
  12. {lang thread}
  13. </div>
  14. </th>
  15. <td class="by">{lang cloudsearch:forum}</td>
  16. <td class="by">{lang author}</td>
  17. </tr>
  18. </table>
  19. </div>
  20. <div class="bm_c">
  21. <table cellspacing="0" cellpadding="0">
  22. <!--{loop $relatethreadlist $thread}-->
  23. <tbody id="$thread[id]">
  24. <tr>
  25. <td class="icn">
  26. <!--{if $thread[icon]}-->
  27. <img src="{$thread[icon]}" />
  28. <!--{else}-->
  29. <img src="{IMGDIR}/folder_common.gif" />
  30. <!--{/if}-->
  31. </td>
  32. <th>
  33. <!--{if !isset($thread[icon])}-->
  34. <a href="forum.php?mod=viewthread&tid=$thread[tThreadId]" target="_blank" class="xst">$thread['pSubject']</a>
  35. <!--{else}-->
  36. <a href="$thread['mTargetUrl']" target="_blank" class="xst">$thread['mTitle']</a>
  37. <!--{/if}-->
  38. </th>
  39. <td class="by">
  40. <!--{if !isset($thread[icon])}-->
  41. <a href="forum.php?mod=forumdisplay&fid=$thread[pForumId]">$thread[pForumName]</a>
  42. <!--{else}-->
  43. $thread[mShowUrl]
  44. <!--{/if}-->
  45. </td>
  46. <td class="by">
  47. <cite>
  48. <!--{if !isset($thread[icon]) && $thread['pAuthorId'] && $thread['pAuthorName']}-->
  49. <a href="home.php?mod=space&uid=$thread[pAuthorId]">$thread[pAuthorName]</a>
  50. <!--{else}-->
  51. {lang anonymous}
  52. <!--{/if}-->
  53. </cite>
  54. <!--{if !isset($thread[icon])}-->
  55. <em class="xi1">$thread[dateline]</em>
  56. <!--{/if}-->
  57. </td>
  58. </tr>
  59. </tbody>
  60. <!--{/loop}-->
  61. </table>
  62. </div>
  63. <!--{else}-->
  64. <div style="line-height:50px;text-align:center;">
  65. {lang cloudsearch:no_content}
  66. </div>
  67. <!--{/if}-->
  68. <!--{/block}-->
  69. <!--{eval return $return;}-->
  70. {eval
  71. }
  72. }