Forum Discussion

mscifo's avatar
mscifo
Guide
14 years ago

Disable wrapper for a custom page

Does anyone know if it's possible to disable the wrapper on individual pages?  I have a custom page with a custom component that I want to just output a block of html (no html/head/body tags or anyth...
  • xorrkaz's avatar
    xorrkaz
    14 years ago

    Ah, I got you.  What about adding some Freemarker to the wrapper bits to exclude them for this custom page?  For example:

     

    <#if coreNode.shortTitle != "My Custom Page">

    <div>

    ...

    </div>

    </#if>