function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
dmsx2oddmsx2od 

FYI: Page template

I had a problem with a page not showing, and it turns out that my mistake was how I declared the page template. 

 

I had: <apex:composition template="{!$Page.SiteTemplate}">

 

But I should have had: <apex:composition template="{!$Site.Template}">

 

Don't make my mistake!  Page.SiteTemplate is visible from inside the app, but not from the Site.  Site.Template, however, is visible inside and outside.