-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBorrowedByLetter.xsl
72 lines (72 loc) · 1.91 KB
/
BorrowedByLetter.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:include href="style.xsl" />
<xsl:include href="header.xsl" />
<xsl:include href="footer.xsl" />
<xsl:template match="/">
<html>
<xsl:if test="notification_data/languages/string">
<xsl:attribute name="lang">
<xsl:value-of select="notification_data/languages/string" />
</xsl:attribute>
</xsl:if>
<head>
<title>
<xsl:value-of select="notification_data/general_data/letter_name" />
</title>
<xsl:call-template name="generalStyle" />
<!-- style.xsl -->
</head>
<body>
<xsl:attribute name="style">
<xsl:call-template name="bodyStyleCss" />
<!-- style.xsl -->
</xsl:attribute>
<xsl:call-template name="head" />
<!-- header.xsl -->
<div class="messageArea">
<div class="messageBody">
<table role="presentation" cellspacing="0" cellpadding="5" border="0">
<tr>
<td>
Hi,
</td>
</tr>
<tr>
<td>
Thanks for picking up your item(s)!
</td>
</tr>
<tr>
<td>
Looking for additional materials that were not in our library?<br />
Try requesting them through our Resource Sharing!
</td>
</tr>
<tr>
<td>
@@sincerely@@
</td>
</tr>
<tr>
<td>
@@department@@<br />
Carleton University Library
</td>
</tr>
<tr>
<td>
Need research help or assistance with your account? We're here to help!
<a href="https://library.carleton.ca/help">Ask a Librarian</a>
</td>
</tr>
</table>
</div>
</div>
<!-- AFN footer template options from footer.xsl -->
<xsl:call-template name="AFNLastFooter" />
<xsl:call-template name="AFNAccount" />
</body>
</html>
</xsl:template>
</xsl:stylesheet>