How to find out the page name for conditional statements?
I'm trying to find the page name of a custom page template, which was created for us by a Lithium contact at some point. You can see in the screenshot the full name of the page (http://screencast.com/t/WlWlbkLpbinq), which is "CategoryPage.Product.quilt.xml". That is actually the full name.
This is what we're trying to achieve, but it does not work.
<#if page.name?lower_case == "categorypageproductquiltxml" >
$(".BoardBrowserListTaplet .CategoryListDisplay").eq(0).before('<a name="support"></a>');
$(".BoardBrowserListTaplet .CategoryListDisplay").eq(1).before('<a name="dashboard"></a>');
$(".BoardBrowserListTaplet .CategoryListDisplay").eq(2).before('<a name="feedback"></a>');
</#if>
I'd assume it would follow the same naming convention, so I've tried the following to no avail.
CategoryPageProductquiltxml
CategoryPageProduct
Thanks!
Alan