Hi I am new to Magnolia and looking at the documentation. I am looking at this part but there is no equivalent script for creating areas. Please help. Thank you
Creating an area script Like pages, areas have their own scripts. The primary purpose of an area script is to render any components inside the area. On your computer, browse to /<CATALINA_HOME>/webapps/<contextPath>/templates, typically this is /apache-tomcat/webapps/magnoliaAuthor/templates. Create a new folder areas. In areas, create a new text file mainArea.ftl and paste the following script in it. <div id="main"> [#list components as component ] [@cms.component content=component /] [/#list] </div> -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=71c0fff2-5b7a-4ebe-8d53-9b6a9b46db63 ---------------------------------------------------------------- For list details, see http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
