<xsl:stylesheet
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:gphoto="http://schemas.google.com/photos/2007"
  xmlns:media="http://search.yahoo.com/mrss/"
  xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="2.0">
  <xsl:template match="/">
    <xsl:apply-templates select="rss/channel"/>
  </xsl:template>
  <xsl:template match="channel">
    <style>
      .gi {border: #dddddd 2px solid;}
      .gi:hover {border: #999999 2px solid;}
    </style>
    <h2>
      <xsl:apply-templates select="title"/>
    </h2>
    <p>
      <xsl:apply-templates select="item"/>
    </p>
    <p style="width: 100%; clear:both;"/>
  </xsl:template>
  <xsl:template match="item">
    <!-- links to image itself -->
    <!--
    <a href="{media:group/media:content/@url}"><img src="{media:group/media:thumbnail/@url}" alt="{title}" title="{title}"/></a>
    -->
    <!-- links to picasaweb-Picture-Frame -->
    <a href="{link}">
      <img src="{media:group/media:thumbnail/@url}" alt="{title}" title="{title}" class="gi"/>
    </a>
  </xsl:template>
</xsl:stylesheet>