Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2018
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.04 KB | None | 0 0
  1. <xen:if is="@uix_useStyleProperties_welcomeBlock">
  2.     <xen:if is="@uix_showWelcomeBlock_forumList"><xen:container var="$uix_showWelcomeBlock">1</xen:container></xen:if>
  3. <xen:else />
  4.     <xen:if is="{$xenOptions.uix_showWelcomeBlock_forumList}"><xen:container var="$uix_showWelcomeBlock">1</xen:container></xen:if>
  5. </xen:if>
  6.  
  7. <xen:if is="@uix_removeBreadCrumbOnForumIndex">
  8.     <xen:container var="$uix_hideTopBreadcrumb">1</xen:container>
  9.     <xen:container var="$uix_hideBottomBreadcrumb">1</xen:container>
  10. </xen:if>
  11. <xen:h1>{$xenOptions.boardTitle}</xen:h1>
  12.  
  13. <xen:container var="$head.canonical"><link rel="canonical" href="{xen:link 'canonical:forums'}" /></xen:container>
  14. <xen:if is="{$xenOptions.boardDescription}"><xen:container var="$head.description">
  15.     <meta name="description" content="{$xenOptions.boardDescription}" /></xen:container></xen:if>
  16. <xen:container var="$head.openGraph">
  17.     <xen:include template="open_graph_meta">
  18.         <xen:set var="$url">{xen:link 'canonical:forums'}</xen:set>
  19.         <xen:set var="$title">{$xenOptions.boardTitle}</xen:set>
  20.         <xen:set var="$description">{$xenOptions.boardDescription}</xen:set>
  21.         <xen:set var="$ogType">website</xen:set>
  22.     </xen:include></xen:container>
  23.  
  24. <xen:hook name="forum_list_nodes">
  25.     <!--XFSHOUT.instance1-->
  26.     <xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
  27. </xen:hook>
  28.  
  29. <xen:sidebar>
  30.     <xen:edithint template="sidebar.css" />
  31.  
  32.     <xen:hook name="forum_list_sidebar">
  33.         <xen:if is="{$canViewMemberList}">
  34.             <xen:include template="sidebar_online_users" />
  35.         </xen:if>
  36.  
  37.         <xen:if is="{$threads}">
  38.             <div class="section threadList">
  39.                 <div class="secondaryContent">
  40.                     <h3><a href="{xen:link find-new/posts}" rel="nofollow">{xen:phrase new_posts}</a></h3>
  41.                     <xen:include template="sidebar_new_posts" />
  42.                 </div>
  43.             </div>
  44.         </xen:if>
  45.  
  46.         <xen:if is="{$profilePosts}">
  47.             <div class="section profilePostList">
  48.                 <div class="secondaryContent">
  49.                     <h3><a href="{xen:link find-new/profile-posts}" rel="nofollow">{xen:phrase new_profile_posts}</a></h3>
  50.                     <xen:include template="sidebar_profile_post_list" />
  51.                 </div>
  52.             </div>
  53.         </xen:if>
  54.  
  55.         <!-- block: forum_stats -->
  56.         <div class="section">
  57.             <div class="secondaryContent statsList" id="boardStats">
  58.                 <h3>{xen:phrase forum_statistics}</h3>
  59.                 <div class="pairsJustified">
  60.                     <dl class="discussionCount"><dt>{xen:phrase discussions}:</dt>
  61.                         <dd>{xen:number $boardTotals.discussions}</dd></dl>
  62.                     <dl class="messageCount"><dt>{xen:phrase messages}:</dt>
  63.                         <dd>{xen:number $boardTotals.messages}</dd></dl>
  64.                     <dl class="memberCount"><dt>{xen:phrase members_count}:</dt>
  65.                         <dd>{xen:number $boardTotals.users}</dd></dl>
  66.                     <dl><dt>{xen:phrase latest_member}:</dt>
  67.                         <dd><xen:username user="$boardTotals.latestUser" /></dd></dl>
  68.                     <!-- slot: forum_stats_extra -->
  69.                 </div>
  70.             </div>
  71.         </div>
  72.         <!-- end block: forum_stats -->
  73.  
  74.         <xen:include template="sidebar_share_page">
  75.             <xen:set var="$url">{xen:link canonical:forums}</xen:set>
  76.         </xen:include>
  77.  
  78.     </xen:hook>
  79. </xen:sidebar>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement