Converting XML To HTML Using ColdFusion And XSLT

<!---
	Define the ColdFusion XML document object that
	will represent the data on an HTML page.
--->
<cfxml variable="xmlPage">
 
	<page>
		<title>
			Maria Bello Fan Site
		</title>
 
		<!--- Meta information. --->
		<meta>
			<keywords>
				maria bello,sexy girls,crazy sexy
			</keywords>
			<description>
				My Maria Bello fan site.
			</description>
		</meta>
 
		<!--- Primary navigation. --->
		<primarynav>
			<navitem
				text="Home"
				href="index.cfm"
				ison="true"
				/>
			<navitem
				text="Photos"
				href="photos.cfm"
				/>
			<navitem
				text="Videos"
				href="videos.cfm"
				/>
		</primarynav>
 
		<!---
			Primary page content. This will make up the bulk
			of the rendered page.
		--->
		<primarycontent>
			<![CDATA[
				<p>
					Welcome to my Maria Bello Fan Site. If you
					are like me, then you think she's just all
					kinds of sexy. I've spent many hours
					compiling this repository of images and
					videos for your (and my) enjoyment. Hope you
					enjoy and please check back soon.
				</p>
 
				<p>
					If Maria Bello were a cereal, she'd be
					magically babelicious.
				</p>
			]]>
		</primarycontent>
	</page>
 
</cfxml>

For Cut-and-Paste