Point mailing lists to nasm.us
[nasm/www.git] / index.php
blob9c322ff45daef254d34c147614482c312bea2255
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>This is the project webpage
17 for the Netwide Assembler (NASM), an asssembler for
18 the x86 CPU architecture portable to nearly every
19 modern platform, and with code generation for many
20 platforms old and new.</p>
21 </div>
22 <div class="col-md-6">
23 <h2>License</h2>
24 <p>As of version 2.07, NASM is now under the
25 <a href="http://opensource.org/licenses/BSD-2-Clause">Simplified (2-clause) BSD license</a>.
26 The details of the license are available in the documentation.</p>
27 </div>
28 </div>
29 </div>
30 </div>
32 <div class="container-fluid nasm-info">
33 <div class="container">
34 <div class="row nasm-info">
35 <div class="col-md-12">
36 <h2>Latest version</h2>
37 <p>
38 <table class="table table-hover table-responsive">
39 <tbody>
40 <tr>
41 <th scope="row">Stable</th>
42 <td><a href="http://www.nasm.us/pub/nasm/releasebuilds/<?php echo $version; ?>/"><?php echo $version; ?></a></td>
43 <td><a href="https://nasm.us/doc/nasmdocc.html">History</a></td>
44 </tr>
45 <?php
46 if ($rc_version) {
47 echo "<tr>";
48 echo "<th scope=\"row\">RC</th>";
49 echo "<td><a href=\"http://www.nasm.us/pub/nasm/releasebuilds/$rc_version/\">$rc_version</a></td>";
50 echo "<td><a href=\"https://nasm.us/xdoc/$rc_version/html/nasmdocc.html\">History</a></td>";
51 echo "</tr>";
54 <tr>
55 <th scope="row">Builds</th>
56 <td><a href="http://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D">List</a></td>
57 <td></td>
58 </tr>
59 <tr>
60 <th scope="row">Snapshots</th>
61 <td><a href="http://www.nasm.us/pub/nasm/snapshots/latest/">Latest</a>,
62 <a href="http://www.nasm.us/pub/nasm/snapshots/?C=M;O=D">List</a></td>
63 <td></td>
64 </tr>
65 </tbody>
66 </table>
67 </p>
68 <p>For users of RPM-based Linux distributions (e.g. Fedora, Red Hat, SUSE, ...),
69 you can download the official NASM builds using <code>dnf</code> or <code>yum</code>
70 by installing <a href="nasm.repo">nasm.repo</a> in your <code>/etc/yum/yum.repos.d</code>
71 directory.</p>
72 </div>
73 </div>
74 </div>
75 </div>
77 <div class="container-fluid">
78 <div class="container">
79 <div class="row nasm-info">
80 <div class="col-md-12">
81 <h2 class="centered">Development Team</h2>
82 <p>NASM was originally developed by Simon Tatham and Julian Hall, and is
83 now maintained by a team led by H. Peter Anvin.</p>
84 <p>Currently active team members are:
85 <ul>
86 <li>H. Peter Anvin</li>
87 <li>Cyrill Gorcunov</li>
88 <li>Chang Seok Bae</li>
89 <li>Jim Kukunas</li>
90 <li>Frank B. Kotler</li>
91 </ul>
92 </p>
93 <p>... with support from many others, and we are always looking for more developers.</p>
94 </div>
95 </div>
96 </div>
97 </div>
99 <div class="container-fluid">
100 <div class="container">
101 <div class="row nasm-info">
102 <div class="col-md-12">
103 <h2 class="centered">Your reports aren't going to <code>/dev/null</code></h2>
104 <p>We're looking for your comments, suggestions and, of course, bug-reports.
105 Report any suspicious behavior you encounter to help us improve the NASM
106 for everyone!</p>
108 <p>Please post your messages to the
109 <a href="https://lists.nasm.us/nasm-devel/">mailing list</a>,
110 or file a <a href="http://bugzilla.nasm.us">bug report</a>.</p>
111 <p>Don't worry if your report is not immediately addressed, even within the
112 first few days, as this is usual for us. Your report will, however, be recorded
113 and dealt with, of course, as time permits.</p>
114 </div>
115 </div>
116 </div>
117 </div>
119 <?php include "footer.inc" ?>
120 </body>
121 </html>