|
Lines 392-398
Link Here
|
| 392 |
</xsl:for-each> |
392 |
</xsl:for-each> |
| 393 |
</span> |
393 |
</span> |
| 394 |
</xsl:if> |
394 |
</xsl:if> |
| 395 |
|
395 |
|
|
|
396 |
<!-- Content Type --> |
| 397 |
<xsl:if test="marc:datafield[@tag=336] or marc:datafield[@tag=337] or marc:datafield[@tag=338]"> |
| 398 |
<span class="results_summary" id="content_type"> |
| 399 |
<xsl:if test="marc:datafield[@tag=336]"> |
| 400 |
<span class="label">Content Type: </span> |
| 401 |
<xsl:for-each select="marc:datafield[@tag=336]"> |
| 402 |
<xsl:call-template name="subfieldSelect"> |
| 403 |
<xsl:with-param name="codes">a</xsl:with-param> |
| 404 |
<xsl:with-param name="delimeter">, </xsl:with-param> |
| 405 |
</xsl:call-template> |
| 406 |
<xsl:if test="position() != last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if> |
| 407 |
</xsl:for-each> |
| 408 |
</xsl:if> |
| 409 |
<xsl:text> </xsl:text> |
| 410 |
<!-- Media Type --> |
| 411 |
<xsl:if test="marc:datafield[@tag=337]"> |
| 412 |
<span class="label">Media Type: </span> |
| 413 |
<xsl:for-each select="marc:datafield[@tag=337]"> |
| 414 |
<xsl:call-template name="subfieldSelect"> |
| 415 |
<xsl:with-param name="codes">a</xsl:with-param> |
| 416 |
<xsl:with-param name="delimeter">, </xsl:with-param> |
| 417 |
</xsl:call-template> |
| 418 |
<xsl:if test="position() != last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if> |
| 419 |
</xsl:for-each> |
| 420 |
</xsl:if> |
| 421 |
<xsl:text> </xsl:text> |
| 422 |
<!-- Media Type --> |
| 423 |
<xsl:if test="marc:datafield[@tag=338]"> |
| 424 |
<span class="label">Carrier Type: </span> |
| 425 |
<xsl:for-each select="marc:datafield[@tag=338]"> |
| 426 |
<xsl:call-template name="subfieldSelect"> |
| 427 |
<xsl:with-param name="codes">a</xsl:with-param> |
| 428 |
<xsl:with-param name="delimeter">, </xsl:with-param> |
| 429 |
</xsl:call-template> |
| 430 |
<xsl:if test="position() != last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if> |
| 431 |
</xsl:for-each> |
| 432 |
</xsl:if> |
| 433 |
</span> |
| 434 |
</xsl:if> |
| 435 |
|
| 436 |
|
| 396 |
<!-- Build ISBN --> |
437 |
<!-- Build ISBN --> |
| 397 |
<xsl:if test="marc:datafield[@tag=020]/marc:subfield[@code='a']"> |
438 |
<xsl:if test="marc:datafield[@tag=020]/marc:subfield[@code='a']"> |
| 398 |
<span class="results_summary isbn"><span class="label">ISBN: </span> |
439 |
<span class="results_summary isbn"><span class="label">ISBN: </span> |