Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 14.25 KB | None | 0 0
  1.  
  2. <!-- INCLUDE overall_header.html -->
  3. <!-- IF U_MCP --><p>[&nbsp;<a href="{U_MCP}">{L_MCP}</a>&nbsp;]</p><!-- ENDIF -->
  4. <h2><a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a></h2>
  5. <!-- NOTE: remove the style="display: none" when you want to have the forum description on the topic body -->
  6. <!-- IF FORUM_DESC --><span style="display: none">{FORUM_DESC}<br /></span><!-- ENDIF -->
  7.  
  8. <!-- IF MODERATORS or U_MCP -->
  9.     <p>
  10.         <!-- IF MODERATORS -->
  11.             <strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS}
  12.         <!-- ENDIF -->
  13.  
  14.     </p>
  15. <!-- ENDIF -->
  16.  
  17. <!-- IF S_FORUM_RULES -->
  18.     <div class="rules">
  19.         <div class="inner"><span class="corners-top"><span></span></span>
  20.  
  21.         <!-- IF U_FORUM_RULES -->
  22.             <a href="{U_FORUM_RULES}">{L_FORUM_RULES}</a>
  23.         <!-- ELSE -->
  24.             <strong>{L_FORUM_RULES}</strong><br />
  25.             {FORUM_RULES}
  26.         <!-- ENDIF -->
  27.  
  28.         <span class="corners-bottom"><span></span></span></div>
  29.     </div>
  30. <!-- ENDIF -->
  31.  
  32. <div class="topic-actions">
  33.  
  34.     <div class="buttons">
  35.        
  36.     <!-- IF not S_IS_BOT and S_DISPLAY_REPLY_INFO -->
  37.         <div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->reply-icon<!-- ENDIF -->"><a href="{U_POST_REPLY_TOPIC}" title="<!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF -->"><span></span><!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED_SHORT}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF --></a></div>
  38.     <!-- ENDIF -->
  39.     </div>
  40.     <br><br>
  41.     <!-- IF S_DISPLAY_SEARCHBOX -->
  42.         <div class="search-box">
  43.             <form method="post" id="topic-search" action="{S_SEARCHBOX_ACTION}">
  44.             <fieldset>
  45.                 <input class="inputbox search tiny"  type="text" name="keywords" id="search_keywords" size="20" value="{L_SEARCH_TOPIC}" onclick="if(this.value=='{LA_SEARCH_TOPIC}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_TOPIC}';" />
  46.                 <input class="button2" type="submit" value="{L_SEARCH}" />
  47.                 <input type="hidden" value="{TOPIC_ID}" name="t" />
  48.                 <input type="hidden" value="msgonly" name="sf" />
  49.             </fieldset>
  50.             </form>
  51.         </div>
  52.     <!-- ENDIF -->
  53.  
  54.     <!-- IF PAGINATION or TOTAL_POSTS -->
  55.         <div class="pagination">
  56.             <!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --><a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->{TOTAL_POSTS}
  57.             <!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
  58.         </div>
  59.     <!-- ENDIF -->
  60.  
  61. </div>
  62. <div class="clear"></div>
  63.  
  64. <!-- IF S_HAS_POLL -->
  65.     <form method="post" action="{S_POLL_ACTION}">
  66.  
  67.     <div class="panel">
  68.         <div class="inner"><span class="corners-top"><span></span></span>
  69.  
  70.         <div class="content">
  71.             <h2>{POLL_QUESTION}</h2>
  72.             <p class="author">{L_POLL_LENGTH}<!-- IF S_CAN_VOTE and L_POLL_LENGTH --><br /><!-- ENDIF --><!-- IF S_CAN_VOTE -->{L_MAX_VOTES}<!-- ENDIF --></p>
  73.  
  74.             <fieldset class="polls">
  75.             <!-- BEGIN poll_option -->
  76.                 <dl class="<!-- IF poll_option.POLL_OPTION_VOTED -->voted<!-- ENDIF -->"<!-- IF poll_option.POLL_OPTION_VOTED --> title="{L_POLL_VOTED_OPTION}"<!-- ENDIF -->>
  77.                     <dt><!-- IF S_CAN_VOTE --><label for="vote_{poll_option.POLL_OPTION_ID}">{poll_option.POLL_OPTION_CAPTION}</label><!-- ELSE -->{poll_option.POLL_OPTION_CAPTION}<!-- ENDIF --></dt>
  78.                     <!-- IF S_CAN_VOTE --><dd style="width: auto;"><!-- IF S_IS_MULTI_CHOICE --><input type="checkbox" name="vote_id[]" id="vote_{poll_option.POLL_OPTION_ID}" value="{poll_option.POLL_OPTION_ID}"<!-- IF poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ELSE --><input type="radio" name="vote_id[]" id="vote_{poll_option.POLL_OPTION_ID}" value="{poll_option.POLL_OPTION_ID}"<!-- IF poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ENDIF --></dd><!-- ENDIF -->
  79.                     <!-- IF S_DISPLAY_RESULTS --><dd class="resultbar"><div class="<!-- IF poll_option.POLL_OPTION_PCT < 20 -->pollbar1<!-- ELSEIF poll_option.POLL_OPTION_PCT < 40 -->pollbar2<!-- ELSEIF poll_option.POLL_OPTION_PCT < 60 -->pollbar3<!-- ELSEIF poll_option.POLL_OPTION_PCT < 80 -->pollbar4<!-- ELSE -->pollbar5<!-- ENDIF -->" style="width:{poll_option.POLL_OPTION_PERCENT};">{poll_option.POLL_OPTION_RESULT}</div></dd>
  80.                     <dd><!-- IF poll_option.POLL_OPTION_RESULT == 0 -->{L_NO_VOTES}<!-- ELSE -->{poll_option.POLL_OPTION_PERCENT}<!-- ENDIF --></dd><!-- ENDIF -->
  81.                 </dl>
  82.             <!-- END poll_option -->
  83.  
  84.             <!-- IF S_DISPLAY_RESULTS -->
  85.                 <dl>
  86.                     <dt>&nbsp;</dt>
  87.                     <dd class="resultbar">{L_TOTAL_VOTES} : {TOTAL_VOTES}</dd>
  88.                 </dl>
  89.             <!-- ENDIF -->
  90.  
  91.             <!-- IF S_CAN_VOTE -->
  92.                 <dl style="border-top: none;">
  93.                     <dt>&nbsp;</dt>
  94.                     <dd class="resultbar"><input type="submit" name="update" value="{L_SUBMIT_VOTE}" class="button1" /></dd>
  95.                 </dl>
  96.             <!-- ENDIF -->
  97.  
  98.             <!-- IF not S_DISPLAY_RESULTS -->
  99.                 <dl style="border-top: none;">
  100.                     <dt>&nbsp;</dt>
  101.                     <dd class="resultbar"><a href="{U_VIEW_RESULTS}">{L_VIEW_RESULTS}</a></dd>
  102.                 </dl>
  103.             <!-- ENDIF -->
  104.             </fieldset>
  105.         </div>
  106.  
  107.         <span class="corners-bottom"><span></span></span></div>
  108.         {S_FORM_TOKEN}
  109.         {S_HIDDEN_FIELDS}
  110.     </div>
  111.  
  112.  
  113.     </form>
  114.     <hr />
  115. <!-- ENDIF -->
  116.  
  117. <!-- BEGIN postrow -->
  118.     <!-- IF postrow.S_FIRST_UNREAD --><a id="unread"></a><!-- ENDIF -->
  119.     <div id="p{postrow.POST_ID}" class="post <!-- IF postrow.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF postrow.S_UNREAD_POST --> unreadpost<!-- ENDIF --><!-- IF postrow.S_POST_REPORTED --> reported<!-- ENDIF --><!-- IF postrow.S_ONLINE and not postrow.S_IGNORE_POST --> online<!-- ENDIF -->">
  120.         <div class="inner"><span class="corners-top"><span></span></span>
  121.  
  122.         <div class="postbody">
  123.             <!-- IF postrow.S_IGNORE_POST -->
  124.                 <div class="ignore">{postrow.L_IGNORE_POST}</div>
  125.             <!-- ELSE -->
  126.  
  127.         <!-- IF not S_IS_BOT -->
  128.             <!-- IF postrow.U_QUOTE or postrow.U_INFO or postrow.U_DELETE or postrow.U_EDIT -->
  129.                 <ul class="profile-icons">
  130.                     <!-- IF postrow.U_EDIT --><li class="edit-icon"><a href="{postrow.U_EDIT}" title="{L_EDIT_POST}"><span>{L_EDIT_POST}</span></a></li><!-- ENDIF -->
  131.                     <!-- IF postrow.U_DELETE --><li class="delete-icon"><a href="{postrow.U_DELETE}" title="{L_DELETE_POST}"><span>{L_DELETE_POST}</span></a></li><!-- ENDIF -->
  132.                     <!-- IF postrow.U_REPORT --><li class="report-icon"><a href="{postrow.U_REPORT}" title="{L_REPORT_POST}"><span>{L_REPORT_POST}</span></a></li><!-- ENDIF -->
  133.                     <!-- IF postrow.U_WARN --><li class="warn-icon"><a href="{postrow.U_WARN}" title="{L_WARN_USER}"><span>{L_WARN_USER}</span></a></li><!-- ENDIF -->
  134.                     <!-- IF postrow.U_INFO --><li class="info-icon"><a href="{postrow.U_INFO}" title="{L_INFORMATION}"><span>{L_INFORMATION}</span></a></li><!-- ENDIF -->
  135.                     <!-- IF postrow.U_QUOTE --><li class="quote-icon"><a href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}"><span>{L_REPLY_WITH_QUOTE}</span></a></li><!-- ENDIF -->
  136.                 </ul>
  137.             <!-- ENDIF -->
  138.         <!-- ENDIF -->
  139.  
  140.             <h3 <!-- IF postrow.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF postrow.POST_ICON_IMG --><img src="{T_ICONS_PATH}{postrow.POST_ICON_IMG}" width="{postrow.POST_ICON_IMG_WIDTH}" height="{postrow.POST_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF --><a href="#p{postrow.POST_ID}">{postrow.POST_SUBJECT}</a></h3>
  141.             <p class="author"><!-- IF S_IS_BOT -->{postrow.MINI_POST_IMG}<!-- ELSE --><a href="{postrow.U_MINI_POST}">{postrow.MINI_POST_IMG}</a><!-- ENDIF -->{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> &raquo; {postrow.POST_DATE} </p>
  142.  
  143.             <!-- IF postrow.S_POST_UNAPPROVED or postrow.S_POST_REPORTED -->
  144.                 <p class="rules">
  145.                     <!-- IF postrow.S_POST_UNAPPROVED -->{UNAPPROVED_IMG} <a href="{postrow.U_MCP_APPROVE}"><strong>{L_POST_UNAPPROVED}</strong></a><!-- ENDIF -->
  146.                     <!-- IF postrow.S_POST_REPORTED -->{REPORTED_IMG} <a href="{postrow.U_MCP_REPORT}"><strong>{L_POST_REPORTED}</strong></a><!-- ENDIF -->
  147.                 </p>
  148.             <!-- ENDIF -->
  149.  
  150.             <div class="content">{postrow.MESSAGE}</div>
  151.  
  152.             <!-- IF postrow.S_HAS_ATTACHMENTS -->
  153.                 <dl class="attachbox">
  154.                     <dt>{L_ATTACHMENTS}</dt>
  155.                     <!-- BEGIN attachment -->
  156.                         <dd>{postrow.attachment.DISPLAY_ATTACHMENT}</dd>
  157.                     <!-- END attachment -->
  158.                 </dl>
  159.             <!-- ENDIF -->
  160.  
  161.             <!-- IF postrow.S_DISPLAY_NOTICE --><div class="rules">{L_DOWNLOAD_NOTICE}</div><!-- ENDIF -->
  162.             <!-- IF postrow.EDITED_MESSAGE or postrow.EDIT_REASON -->
  163.                 <div class="notice">{postrow.EDITED_MESSAGE}
  164.                     <!-- IF postrow.EDIT_REASON --><br /><strong>{L_REASON}:</strong> <em>{postrow.EDIT_REASON}</em><!-- ENDIF -->
  165.                 </div>
  166.             <!-- ENDIF -->
  167.  
  168.             <!-- IF postrow.BUMPED_MESSAGE --><div class="notice">{postrow.BUMPED_MESSAGE}</div><!-- ENDIF -->
  169.             <!-- IF postrow.SIGNATURE --><div id="sig{postrow.POST_ID}" class="signature">{postrow.SIGNATURE}</div><!-- ENDIF -->
  170.         <!-- ENDIF -->
  171.  
  172.         </div>
  173.  
  174.         <!-- IF not postrow.S_IGNORE_POST -->
  175.             <dl class="postprofile" id="profile{postrow.POST_ID}">
  176.             <dt>
  177.                 <!-- IF postrow.POSTER_AVATAR -->
  178.                     <!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}">{postrow.POSTER_AVATAR}</a><!-- ELSE -->{postrow.POSTER_AVATAR}<!-- ENDIF --><br />
  179.                 <!-- ENDIF -->
  180.                 <!-- IF not postrow.U_POST_AUTHOR --><strong>{postrow.POST_AUTHOR_FULL}</strong><!-- ELSE -->{postrow.POST_AUTHOR_FULL}<!-- ENDIF -->
  181.             </dt>
  182.  
  183.             <!-- IF postrow.RANK_TITLE or postrow.RANK_IMG --><dd>{postrow.RANK_TITLE}<!-- IF postrow.RANK_TITLE and postrow.RANK_IMG --><br /><!-- ENDIF -->{postrow.RANK_IMG}</dd><!-- ENDIF -->
  184.  
  185.         <dd>&nbsp;</dd>
  186.  
  187.         <!-- IF postrow.POSTER_POSTS != '' --><dd><strong>{L_POSTS}:</strong> {postrow.POSTER_POSTS}</dd><!-- ENDIF -->
  188.         <!-- IF postrow.POSTER_JOINED --><dd><strong>{L_JOINED}:</strong> {postrow.POSTER_JOINED}</dd><!-- ENDIF -->
  189.         <!-- IF postrow.POSTER_FROM --><dd><strong>{L_LOCATION}:</strong> {postrow.POSTER_FROM}</dd><!-- ENDIF -->
  190.  
  191.         <!-- IF postrow.S_PROFILE_FIELD1 -->
  192.             <!-- Use a construct like this to include admin defined profile fields. Replace FIELD1 with the name of your field. -->
  193.             <dd><strong>{postrow.PROFILE_FIELD1_NAME}:</strong> {postrow.PROFILE_FIELD1_VALUE}</dd>
  194.         <!-- ENDIF -->
  195.  
  196.         <!-- BEGIN custom_fields -->
  197.             <dd><strong>{postrow.custom_fields.PROFILE_FIELD_NAME}:</strong> {postrow.custom_fields.PROFILE_FIELD_VALUE}</dd>
  198.         <!-- END custom_fields -->
  199.  
  200.         <!-- IF not S_IS_BOT -->
  201.         <!-- IF postrow.U_PM or postrow.U_EMAIL or postrow.U_WWW or postrow.U_MSN or postrow.U_ICQ or postrow.U_YIM or postrow.U_AIM or postrow.U_JABBER -->
  202.             <dd>
  203.                 <ul class="profile-icons">
  204.                     <!-- IF postrow.U_PM --><li class="pm-icon"><a href="{postrow.U_PM}" title="{L_PRIVATE_MESSAGE}"><span>{L_PRIVATE_MESSAGE}</span></a></li><!-- ENDIF -->
  205.                     <!-- IF postrow.U_EMAIL --><li class="email-icon"><a href="{postrow.U_EMAIL}" title="{L_SEND_EMAIL_USER} {postrow.POST_AUTHOR}"><span>{L_SEND_EMAIL_USER} {postrow.POST_AUTHOR}</span></a></li><!-- ENDIF -->
  206.                     <!-- IF postrow.U_WWW --><li class="web-icon"><a href="{postrow.U_WWW}" title="{L_VISIT_WEBSITE}: {postrow.U_WWW}"><span>{L_WEBSITE}</span></a></li><!-- ENDIF -->
  207.                     <!-- IF postrow.U_MSN --><li class="msnm-icon"><a href="{postrow.U_MSN}" onclick="popup(this.href, 550, 320); return false;" title="{L_MSNM}"><span>{L_MSNM}</span></a></li><!-- ENDIF -->
  208.                     <!-- IF postrow.U_ICQ --><li class="icq-icon"><a href="{postrow.U_ICQ}" onclick="popup(this.href, 550, 320); return false;" title="{L_ICQ}"><span>{L_ICQ}</span></a></li><!-- ENDIF -->
  209.                     <!-- IF postrow.U_YIM --><li class="yahoo-icon"><a href="{postrow.U_YIM}" onclick="popup(this.href, 780, 550); return false;" title="{L_YIM}"><span>{L_YIM}</span></a></li><!-- ENDIF -->
  210.                     <!-- IF postrow.U_AIM --><li class="aim-icon"><a href="{postrow.U_AIM}" onclick="popup(this.href, 550, 320); return false;" title="{L_AIM}"><span>{L_AIM}</span></a></li><!-- ENDIF -->
  211.                     <!-- IF postrow.U_JABBER --><li class="jabber-icon"><a href="{postrow.U_JABBER}" onclick="popup(this.href, 550, 320); return false;" title="{L_JABBER}"><span>{L_JABBER}</span></a></li><!-- ENDIF -->
  212.                 </ul>
  213.             </dd>
  214.         <!-- ENDIF -->
  215.         <!-- ENDIF -->
  216.  
  217.         </dl>
  218.     <!-- ENDIF -->
  219.  
  220.         <div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
  221.  
  222.         <span class="corners-bottom"><span></span></span></div>
  223.     </div>
  224.     <hr/>
  225.  
  226.     <hr class="divider" />
  227. <!-- END postrow -->
  228.  
  229. <!-- IF S_NUM_POSTS > 1 or PREVIOUS_PAGE -->
  230.     <form id="viewtopic" method="post" action="{S_TOPIC_ACTION}">
  231.  
  232.     <fieldset class="display-options" style="margin-top: 0; ">
  233.         <!-- IF PREVIOUS_PAGE --><a href="{PREVIOUS_PAGE}" class="left-box {S_CONTENT_FLOW_BEGIN}">{L_PREVIOUS}</a><!-- ENDIF -->
  234.         <!-- IF NEXT_PAGE --><a href="{NEXT_PAGE}" class="right-box {S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF -->
  235.         <!-- IF not S_IS_BOT -->
  236.         <label>{L_DISPLAY_POSTS}: {S_SELECT_SORT_DAYS}</label>
  237.         <label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label> <label>{S_SELECT_SORT_DIR} <input type="submit" name="sort" value="{L_GO}" class="button2" /></label>
  238.         <!-- ENDIF -->
  239.     </fieldset>
  240.  
  241.     </form>
  242.     <hr />
  243. <!-- ENDIF -->
  244.  
  245. <div class="topic-actions">
  246.     <div class="buttons">
  247.     <!-- IF not S_IS_BOT and S_DISPLAY_REPLY_INFO -->
  248.         <div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->reply-icon<!-- ENDIF -->"><a href="{U_POST_REPLY_TOPIC}" title="<!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF -->"><span></span><!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED_SHORT}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF --></a></div>
  249.     <!-- ENDIF -->
  250.     </div>
  251.  
  252.     <!-- IF PAGINATION or TOTAL_POSTS -->
  253.         <div class="pagination">
  254.             {TOTAL_POSTS}
  255.             <!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
  256.         </div>
  257.     <!-- ENDIF -->
  258. </div>
  259.  
  260. <!-- INCLUDE jumpbox.html -->
  261.  
  262. <!-- IF S_TOPIC_MOD -->
  263.     <form method="post" action="{S_MOD_ACTION}">
  264.     <fieldset class="quickmod">
  265.         <label for="quick-mod-select">{L_QUICK_MOD}:</label> {S_TOPIC_MOD} <input type="submit" value="{L_GO}" class="button2" />
  266.         {S_FORM_TOKEN}
  267.     </fieldset>
  268.     </form>
  269. <!-- ENDIF -->
  270.  
  271. <!-- IF S_DISPLAY_ONLINE_LIST -->
  272.     <h3><!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a><!-- ELSE -->{L_WHO_IS_ONLINE}<!-- ENDIF --></h3>
  273.     <p>{LOGGED_IN_USER_LIST}</p>
  274. <!-- ENDIF -->
  275.  
  276. <!-- INCLUDE overall_footer.html -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement