How to convert previous HTML pages

If you have a number of previously developed pages that form a web site, first thing you need to do is extract one or more templates from them, so that you can render pages through EasyDoesIt using those templates.

Once you got your templates, every single page has to be purged from everything that is not the main content of the page. Tipically you will have a HTML or XHTML page consisting of a header and a body. Inside the body you would have inserted the main content of the page:

<html> <head> [...] </head> <body> <div id="left_column"> <p>Left column content.</p> </div> <h1>Our company</h1> <p>Here is the main content.</p> [...] <div id="right_column"> <p>Right column content.</p> </div> </body> </html>

Once you get rid of all the elements contained in the template, your simplified code should have been reduced to something like this:

<h1>Our company</h1> <p>Here is the main content.</p> [...]

Then you save the file as a page: '~/pages/our-company.inc', and you can access it like http://website.com/our-company or http://website.com/?p=our-company (if you do not make use of Apache rewrite module).

Easy Does It

Creating small web sites, in an organized and easy fashion.

How to...

Lazy Badger Team

Lazy Badger

This is our war name regarding open software developing. We have a thing for badgers. You can be up to date about what we are doing by following us on Twitter.