Get started

Our website is under re-construction.
The official developers guide will be accessible soon on Agile CMS.NET site. 
Meanwhile you are welcome to play in the sandbox.

Under the "App_Themes" folder you will find a folder named "Clear_Green", this is a theme folder that contains CSS and graphic files for the current website skin. You can create another skin folder and alter the CSS according to your design.
CSS class names defined by CMS modules placed under the folder "CmsEngine/WebControls".

If you want to change the layout of the page, move things around, go to the "CmsTemplates" folder. The folder named "Clear" contains ASP.NET Master pages for the demo site. Alter HTML all you need to add new look.

After creating new Skin and Template you must tell your site to use it by modifying "theme" and "template" property in "CmsEngine\config.xml"

        <project name="demo site">

            <id>2</id>

            <uri>demo.agilecms.net/</uri>

            <theme>clear_green</theme>

            <template>clear</template>

      </project>