web-fonts.css: Fix addressing
[nasm/www.git] / index.php
blobff2c8832e2186e38f4872f21a1990fbc2b69acb4
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><ul>
36 <li>The latest stable version of NASM is
37 <a href="http://www.nasm.us/pub/nasm/releasebuilds/<?php echo $version; ?>/"><?php echo $version; ?></a>
38 (<a href="/doc/nasmdocc.html">revision history</a>).</li>
39 <?php
40 if ($rc_version) {
41 echo "<li>The latest release candidate of NASM is ";
42 echo "<a href=\"http://www.nasm.us/pub/nasm/releasebuilds/$rc_version/\">$rc_version</a>\n";
43 echo "(<a href=\"/xdoc/$rc_version/html/nasmdocc.html\">revision history</a>).</li>\n";
46 <li>Release candidate builds are available
47 <a href="http://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D">here</a>.</li>
48 <li>Daily development snapshots are available
49 <a href="http://www.nasm.us/pub/nasm/snapshots/?C=M;O=D">here</a>
50 (<a href="http://www.nasm.us/pub/nasm/snapshots/latest/">latest</a>).</li>
51 </ul></p>
52 <p>For users of RPM-based Linux distributions (e.g. Fedora, Red Hat, SUSE, ...),
53 you can download the official NASM builds using
54 <code>dnf</code> or <code>yum</code> by installing <a href="nasm.repo">nasm.repo</a> in your
55 <code>/etc/yum/yum.repos.d</code> directory.</p>
56 </div>
57 </div>
58 </div>
59 </div>
61 <div class="container-fluid">
62 <div class="container">
63 <div class="row nasm-info">
64 <div class="col-md-12">
65 <h2 class="centered">Development Team</h2>
66 <p>NASM was originally developed by Simon Tatham and Julian Hall, and is
67 now maintained by a team led by H. Peter Anvin.</p>
68 <p>Currently active team members are:
69 <ul>
70 <li>H. Peter Anvin</li>
71 <li>Cyrill Gorcunov</li>
72 <li>Chang Seok Bae</li>
73 <li>Jim Kukunas</li>
74 <li>Frank B. Kotler</li>
75 </ul>
76 </p>
77 <p>... with support from many others, and we are always looking for more developers.</p>
78 </div>
79 </div>
80 </div>
81 </div>
83 <div class="container-fluid">
84 <div class="container">
85 <div class="row nasm-info">
86 <div class="col-md-12">
87 <h2 class="centered">Your reports aren't going to <code>/dev/null</code></h2>
88 <p>We're looking for your comments, suggestions and, of course, bug-reports.
89 Report any suspicious behavior you encounter to help us improve the NASM
90 for everyone!</p>
92 <p>Please post your messages to the
93 <a href="https://sourceforge.net/mail/?group_id=6208">mailing list</a>,
94 or file a <a href="http://bugzilla.nasm.us">bug report</a>.</p>
95 <p>Don't worry if your report is not immediately addressed, even within the
96 first few days, as this is usual for us. Your report will, however, be recorded
97 and dealt with, of course, as time permits.</p>
98 </div>
99 </div>
100 </div>
101 </div>
103 <?php include "footer.inc" ?>
104 </body>
105 </html>