06-02-2008, 07:46 AM
|
#7 (permalink)
|
|
The Wanderer
Join Date: Jun 2008
Posts: 19
Thanks: 0
|
I am creating a full scale CMS tool by just using XML. The point of this is so that people I have a set up like this:
HTML Code:
<website>
<webpage id="3"> <!-- For changing order on navigations -->
<title>Title for the Page</title>
<subhead>Sub head, but this is optional</subhead>
<content>
<p>This is the main content</p>
<p>paragraphs are retained also</p>
</content>
</webpage>
</website>
The webpage tag gets created each time someone creates a page. I also use it for my personal site instead of a database. oscargodson.com/portfolio.xml and my web pages take all that information and parses it into an HTML document.
|
|
|
|