<%@ taglib prefix="s" uri="/struts-tags" %>
<%@ taglib prefix="xtags" uri="http://jakarta.apache.org/taglibs/xtags-1.0" %>

<div class="g_contentContainer">
  <div class="resources_header">
    <h3><s:text name="related_resources.header.discography" /></h3>
  </div>
  <div class="resources_headerLink">
    <a href="/mjf/web/pdf/MJF_discography.pdf">Download PDF version</a>
  </div>
  <xtags:parse uri="/web/data/resources/discography.xml" />
  <xtags:forEach select="//record">
    <div class="resources_element">
      <xtags:if test="title != ''">
        <xtags:valueOf select="title" /><br>
      </xtags:if>
      <xtags:if test="date != ''">
        <xtags:valueOf select="date" /><br>
      </xtags:if>
      <xtags:if test="description != ''">
        <xtags:valueOf select="description" />
      </xtags:if>
    </div>
  </xtags:forEach>
</div>
