-
Notifications
You must be signed in to change notification settings - Fork 32
/
books.xsls
37 lines (30 loc) · 919 Bytes
/
books.xsls
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
<!--
Copyright (C) Igor Sysoev
Copyright (C) Nginx, Inc.
-->
X:stylesheet {
X:template = "book" {
<table><tr>
<td bgcolor="#EEEEEE">
<a href="{@link}">
<img src="{@cover}" alt="" style="padding: 2pt;" border="0"/>
</a>
</td>
<td>
X:text {title: } <a href="{@link}">!{@title}</a> <br/>
X:if "@author2" { X:text {authors: } } else { X:text {author: } }
X:if "@site" { <a href="{@site}">!{@author}</a> } else { !{@author} }
X:if "@author2" {
X:text {,} <br/> X:text {      }
X:if "@site2" { <a href="{@site2}">!{@author2}</a> }
else { !{@author2} }
}
<br/>
X:if "@translator" { X:text {translator: } !{@translator} <br/> }
X:if "@publisher" { X:text {publisher: } !{@publisher} <br/> }
X:text {language: } !{@lang} <br/>
X:text {year: } !{@year}
</td>
</tr></table>
}
}