view xsls/books.xsls @ 1962:abc05dc025d9

Linux packages: updated the list of supported distributions. - CentOS 5 removed due to EOL. - Added Debian 9 "Stretch". - Added aarch64/arm64 architecture to Ubuntu 16.04.
author Konstantin Pavlov <thresh@nginx.com>
date Wed, 12 Apr 2017 18:55:23 +0300
parents ae713f8acaca
children b5cc488e6800
line wrap: on
line source

<!--
  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 {&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;}
        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}
    </td>

    </tr></table>
}

}