Lines 120-125
Link Here
|
120 |
</h1> |
120 |
</h1> |
121 |
</xsl:if> |
121 |
</xsl:if> |
122 |
|
122 |
|
|
|
123 |
<!--Component part records: Displaying title and author of component part records if available. These are floated to right by css. --> |
124 |
<xsl:if test="marc:componentPartRecords/marc:componentPart"> |
125 |
<span class="componentPartRecordsContainer results_summary"> |
126 |
<h5>Component part records:</h5> |
127 |
<xsl:for-each select="marc:componentPartRecords/marc:componentPart"> |
128 |
<span class="componentPartRecord"> |
129 |
<xsl:if test="marc:title"> |
130 |
<span class="componentPartRecordTitle"> |
131 |
<a><xsl:attribute name="href">/cgi-bin/koha/catalogue/detail.pl?biblionumber=<xsl:value-of select="marc:biblionumber" /></xsl:attribute> |
132 |
<xsl:value-of select="marc:title" /> |
133 |
</a> |
134 |
</span> |
135 |
</xsl:if> |
136 |
<xsl:if test="marc:author"> |
137 |
- |
138 |
<span class="componentPartRecordAuthor"> |
139 |
<xsl:value-of select="marc:author" /> |
140 |
</span> |
141 |
</xsl:if> |
142 |
</span> |
143 |
<br /> |
144 |
</xsl:for-each> |
145 |
</span> |
146 |
</xsl:if> |
147 |
|
148 |
|
123 |
<xsl:if test="marc:datafield[@tag=245]"> |
149 |
<xsl:if test="marc:datafield[@tag=245]"> |
124 |
<h1 class="title" property="name"> |
150 |
<h1 class="title" property="name"> |
125 |
<xsl:for-each select="marc:datafield[@tag=245]"> |
151 |
<xsl:for-each select="marc:datafield[@tag=245]"> |
Lines 146-151
Link Here
|
146 |
</h1> |
172 |
</h1> |
147 |
</xsl:if> |
173 |
</xsl:if> |
148 |
|
174 |
|
|
|
175 |
|
149 |
<!-- Author Statement: Alternate Graphic Representation (MARC 880) --> |
176 |
<!-- Author Statement: Alternate Graphic Representation (MARC 880) --> |
150 |
<xsl:if test="$display880"> |
177 |
<xsl:if test="$display880"> |
151 |
<h5 class="author"> |
178 |
<h5 class="author"> |
Lines 982-988
Link Here
|
982 |
</xsl:if> |
1009 |
</xsl:if> |
983 |
|
1010 |
|
984 |
</xsl:element> |
1011 |
</xsl:element> |
985 |
</xsl:template> |
1012 |
</xsl:template><!-- End of marc:record --> |
986 |
|
1013 |
|
987 |
<xsl:template name="showAuthor"> |
1014 |
<xsl:template name="showAuthor"> |
988 |
<xsl:param name="authorfield" /> |
1015 |
<xsl:param name="authorfield" /> |
989 |
- |
|
|