xenforo seo for pages

Admin

Administrator

xenforo seo for pages

Bevor ich das wieder vergesse und suchen muss ...



Accounts & global page templates

Code:
<!-- page title -->
<xf:if is="$template == 'account_details' ">
<title>page template custom page title goes here</title>
<xf:else />
<title><xf:title formatter="%s | %s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>
</xf:if>

<!-- meta description -->
<xf:if is="$template == 'account_details' ">
<meta name="description" content="page template custom meta description goes here"/>
<xf:else />
<meta name="description" content="{$description}"/>
</xf:if>
 
Top