aneeshsudhakaran / SFCC

Salesforce Commerce Cloud
5 stars 0 forks source link

how we can identify the page is homepage or not? #12

Open aneeshsudhakaran opened 6 years ago

aneeshsudhakaran commented 6 years ago

Soln 1 : Pass a variable from controller and check in ISML


<isif condition="${ typeof (pdict.showHrefLangs) === 'boolean' && typeof (pdict.showHrefLangs) != 'undefined' }">
    <isloop items="${ dw.system.Site.getAllSites() }" var="allSite" status="allSiteloopstate">
        <link rel="alternate" hreflang="${allSite.defaultLocale}" href="${allSite.httpsHostName}" />
    </isloop>
</isif>