layouts/custompage/downloads.html (44 lines of code) (raw):

<!-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. See accompanying LICENSE file. --> {{partial "header.html" .}} <div class="container"> <h1>Download</h1> <p>Apache Ozone is released as source code tarball. Binary tarballs are also provided for convenience. Both kinds of tarballs are distributed via mirror sites. They should be verified after download against checksums and signatures, available directly from Apache.</p> <h2>Supported Releases</h2> Releases in the table are supported by the Apache Ozone community for security fixes. Other versions are not supported, but are available from the archives. <p> <table class="table table-striped"> <thead> <tr> <th>Version</th> <th>Release date</th> <th>Source download</th> <th>Binary download</th> <th>Release notes</th> </tr> </thead> {{range (where (where .Site.Pages "Section" "release") ".Params.linked" true) }} <tr> <td>{{.File.BaseFileName }}</td> <td>{{dateFormat "2006 Jan 2 " .Date}}</td> <td> <a href="https://www.apache.org/dyn/closer.cgi/ozone/{{.File.BaseFileName }}/ozone-{{.File.BaseFileName }}-src.tar.gz">source</a> (<a href="https://downloads.apache.org/ozone/{{.File.BaseFileName }}/ozone-{{.File.BaseFileName }}-src.tar.gz.sha512">checksum</a>, <a href="https://downloads.apache.org/ozone/{{.File.BaseFileName }}/ozone-{{.File.BaseFileName }}-src.tar.gz.asc">signature</a>) </td> <td> <a href="https://www.apache.org/dyn/closer.cgi/ozone/{{.File.BaseFileName }}/ozone-{{.File.BaseFileName }}.tar.gz">binary</a> (<a href="https://downloads.apache.org/ozone/{{.File.BaseFileName }}/ozone-{{.File.BaseFileName }}.tar.gz.sha512">checksum</a>, <a href="https://downloads.apache.org/ozone/{{.File.BaseFileName }}/ozone-{{.File.BaseFileName }}.tar.gz.asc">signature</a>) </td> <td> <a href="release/{{.File.BaseFileName }}/">Announcement</a> </td> </tr> {{end}} </table> </p> {{.Content}} </div> {{partial "footer.html" .}}