index: Show links to downloads in second column
[nasm/www.git] / index.php
blob8ca7d2631cd34ea961a177f574dedb01dbf37612
1 <?php echo '<?xml version="1.0" encoding="utf-8"?>'; ?>
3 <!DOCTYPE html>
4 <html lang="en">
6 <?php include "header.inc" ?>
8 <body>
9 <?php include "navbar.inc" ?>
11 <div class="container-fluid">
12 <div class="container">
13 <div class="row nasm-info">
14 <div class="col-md-6">
15 <h2>Welcome</h2>
16 <p>We are gradually moving services away from Sourceforge to this page.
17 For our remaining Sourceforge services see
18 <a href="https://sourceforge.net/projects/nasm">here</a>.</p>
19 </div>
20 <div class="col-md-6">
21 <h2>License</h2>
22 <p>As of version 2.07, NASM is now under the
23 <a href="http://opensource.org/licenses/BSD-2-Clause">Simplified (2-clause) BSD license</a>.
24 The details of the license are available in the documentation.</p>
25 </div>
26 </div>
27 </div>
28 </div>
30 <div class="container-fluid nasm-info">
31 <div class="container">
32 <div class="row nasm-info">
33 <div class="col-md-12">
34 <h2>Latest version</h2>
35 <p>
36 <table class="table table-hover table-responsive">
37 <tbody>
38 <tr>
39 <th scope="row">Stable</th>
40 <td><a href="http://www.nasm.us/pub/nasm/releasebuilds/<?php echo $version; ?>/"><?php echo $version; ?></a></td>
41 <td><a href="https://nasm.us/doc/nasmdocc.html">History</a></td>
42 </tr>
43 <?php
44 if ($rc_version) {
45 echo "<tr>";
46 echo "<th scope=\"row\">RC</th>";
47 echo "<td><a href=\"http://www.nasm.us/pub/nasm/releasebuilds/$rc_version/\">$rc_version</a></td>";
48 echo "<td><a href=\"https://nasm.us/xdoc/$rc_version/html/nasmdocc.html\">History</a></td>";
49 echo "</tr>";
52 <tr>
53 <th scope="row">Builds</th>
54 <td><a href="http://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D">List</a></td>
55 <td></td>
56 </tr>
57 <tr>
58 <th scope="row">Snapshots</th>
59 <td><a href="http://www.nasm.us/pub/nasm/snapshots/latest/">Latest</a>,
60 <a href="http://www.nasm.us/pub/nasm/snapshots/?C=M;O=D">List</a></td>
61 <td></td>
62 </tr>
63 </tbody>
64 </table>
65 </p>
66 <p>For users of RPM-based Linux distributions (e.g. Fedora, Red Hat, SUSE, ...),
67 you can download the official NASM builds using <code>dnf</code> or <code>yum</code>
68 by installing <a href="nasm.repo">nasm.repo</a> in your <code>/etc/yum/yum.repos.d</code>
69 directory.</p>
70 </div>
71 </div>
72 </div>
73 </div>
75 <div class="container-fluid">
76 <div class="container">
77 <div class="row nasm-info">
78 <div class="col-md-12">
79 <h2 class="centered">Development Team</h2>
80 <p>NASM was originally developed by Simon Tatham and Julian Hall, and is
81 now maintained by a team led by H. Peter Anvin.</p>
82 <p>Currently active team members are:
83 <ul>
84 <li>H. Peter Anvin</li>
85 <li>Cyrill Gorcunov</li>
86 <li>Chang Seok Bae</li>
87 <li>Jim Kukunas</li>
88 <li>Frank B. Kotler</li>
89 </ul>
90 </p>
91 <p>... with support from many others, and we are always looking for more developers.</p>
92 </div>
93 </div>
94 </div>
95 </div>
97 <div class="container-fluid">
98 <div class="container">
99 <div class="row nasm-info">
100 <div class="col-md-12">
101 <h2 class="centered">Your reports aren't going to <code>/dev/null</code></h2>
102 <p>We're looking for your comments, suggestions and, of course, bug-reports.
103 Report any suspicious behavior you encounter to help us improve the NASM
104 for everyone!</p>
106 <p>Please post your messages to the
107 <a href="https://sourceforge.net/mail/?group_id=6208">mailing list</a>,
108 or file a <a href="http://bugzilla.nasm.us">bug report</a>.</p>
109 <p>Don't worry if your report is not immediately addressed, even within the
110 first few days, as this is usual for us. Your report will, however, be recorded
111 and dealt with, of course, as time permits.</p>
112 </div>
113 </div>
114 </div>
115 </div>
117 <?php include "footer.inc" ?>
118 </body>
119 </html>