<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
	<xsl:output method="xml" indent="yes"/>

	<xsl:template match="/">
		<html>
			<head>
				<title>Personal Agent</title>
			</head>
			<body>
				<h1>Personal Agent - Main Page</h1>
				<p>
				Hi,
				<xsl:value-of select="bean/primaryKey" />,
				I'm your personal agent. I have
				run
				<xsl:value-of select="bean/acts" />
				times.
				</p>
				<p>
					<font>
						<xsl:attribute name="color">
							<xsl:value-of select="bean/favoriteColor" />
						</xsl:attribute>
					This text will be shown in your
					favorite color.
					</font>
				</p>
				<p>
				You can edit your
				<a href="platform?component=com.ibertest.personal.TestPersonalAgent&amp;show=editPreferencesPage">preferences</a>.
				</p>
				<p>
				Page views:
				<xsl:value-of select="bean/pageViews" />
				</p>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>
