view xsls/books.xsls @ 1626:b6fad74f2aa1

Removed release packages from linux downloads page. Rationale: - They are only available for stable branch - They are only available for CentOS/RHEL - The repo they configure does not include those packages so they are impossible to update
author Konstantin Pavlov <thresh@nginx.com>
date Thu, 17 Dec 2015 19:44:14 +0300
parents 81ad082bc837
children ae713f8acaca
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:text {author: }
    X:if "@site" { <a href="{@site}">!{@author}</a> } else { !{@author} } <br/>
    X:if "@translator" { X:text {translator: } !{@translator} <br/> }
    X:if "@publisher" { X:text {publisher: } !{@publisher} <br/> }
    X:text {language: } !{@lang}
    </td>

    </tr></table>
}

}