Of course, now that you have a CMS running on your server you'll want to make a template so that the pages actually look like a part of your site. The following example will show you how to get started making a template for your site.
We all have our different methods. Mine is to draw page sketches in pencil. Others might jump straight into photoshop. Whatever works for you. Just keep in mind what page elements you need to design for:

Once you have your design created, make an HTML page that employs that design. When you're making the page and stylesheet you can use the following excerpts in place of elements generated by simple:
<ul>
<li><a href="#">Menu Item</a></li>
<li><a href="#">Menu Item</a>
<ul>
<li><a href="#">Sub-menu Item</a></li>
</ul>
</li>
</ul>
<div class="simple-breadcrumbs">
<a href="#">Site Root</a> >
<a href="#">Level 1</a> >
<a href="#">Level 2</a>
</div>

After you have a page created that looks the way you want, you'll need to place it in a folder somewhere in the simple templates directory. Once the page is there with its supporting files make sure to give it a PHP extension and alter any references to supporting files (such as CSS files or images) so that they use root-relative URLs.
Replace the menu, breadcrumb, title, and body objects with the appropriate controls.

Login to simple's management console and go to the "templates" tab. Click to add a template, then set the name and file name. Remember that the file location is assumed to be within the /templates folder.
Once the template is functioning you can start making pages using it for layout.
