forked from smu-libraries/alma_letters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecordTitle.xsl
24 lines (24 loc) · 977 Bytes
/
recordTitle.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="recordTitle">
<div class="recordTitle">
<span class="spacer_after_1em">
<xsl:value-of select="notification_data/phys_item_display/title"/>
</span>
</div>
<xsl:if test="notification_data/phys_item_display/author !=''">
<div class="">
<span class="spacer_after_1em">
<span class="recordAuthor">By: <xsl:value-of select="notification_data/phys_item_display/author"/></span>
</span>
</div>
</xsl:if>
<xsl:if test="notification_data/phys_item_display/issue_level_description !=''">
<div class="">
<span class="spacer_after_1em">
<span class="volumeIssue">Description: <xsl:value-of select="notification_data/phys_item_display/issue_level_description"/></span>
</span>
</div>
</xsl:if>
</xsl:template>
</xsl:stylesheet>