ok so I've got this far...
Haven't been able to get it to display the "Begin"(EventDate) date and for some reason it showing older entries...
I'm using the lastest entries RSS feed straight from a SharePoint Calendar..
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml"/>
<xsl:template match="rss/channel"><style media="all" lang="en" type="text/css">
.ChannelTitle
{
font-family: Verdana;
font-size: 11pt;
font-weight: bold;
width: 500px;
text-align: center;
}
.EventEntry
{
border-bottom: 1px dotted lightgrey;
}
.EventTitle
{
color: #ffffff;
font-family: Verdana;
font-size: 9pt;
font-weight: bold;
padding-left: 5px;
padding-top: 5px;
padding-bottom: 5px;
}
.EventHeader
{
font-family: Verdana;
font-size: 7pt;
padding-left: 5px;
padding-bottom: 2px;
}
.EventHeader A:visited
{
text-decoration: none;
}
.EventHeader A:link
{
text-decoration: none;
}
.EventHeader A:hover
{
text-decoration: underline;
}
</style><xsl:apply-templates select="item"/></xsl:template><xsl:template match="title">
<div class="ChannelTitle">
<xsl:value-of select="text()"/>
</div>
</xsl:template>
<xsl:template match="item"><div class="EventEntry"><div class="EventTitle"><xsl:value-of select="title"/></div><div class="EventHeader"><xsl:value-of select="ows_EventDate"/><a href="{link}">View Event</a></div></div></xsl:template></xsl:stylesheet>
http://www.aussieslivingsimply.com.au/images/rssfeed.png