XF 1.5 Display page_x_of_y in header

Vastyles

Member
Is there a way to display the pagenav bits within the header template? So if there is a pagination it would display the page x of x?

Code:
          <xen:if is="{$pageTotal} > 1">
            {xen:phrase page_x_of_y, 'current={$currentPage}', 'total={$pageTotal}'}
          <xen:else />
            <em>Welcome</em>
          </xen:if>
 
Top Bottom