Add template.php
[nasm/www.git] / index.php
blob0dd6e2de3819c0c714d73bc2fb50dd3d3c01a6fd
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 </div>
53 </div>
54 </div>
55 </div>
57 <div class="container-fluid">
58 <div class="container">
59 <div class="row nasm-info">
60 <div class="col-md-12">
61 <h2 class="centered">Development Team</h2>
62 <p>NASM was originally developed by Simon Tatham and Julian Hall, and is
63 now maintained by a team led by H. Peter Anvin.</p>
64 <p>Currently active team members are:
65 <ul>
66 <li>H. Peter Anvin</li>
67 <li>Jim Kukunas</li>
68 <li>Cyrill Gorcunov</li>
69 <li>Frank B. Kotler</li>
70 </ul>
71 </p>
72 <p>... with support from many others, and we are always looking for more developers.</p>
73 </div>
74 </div>
75 </div>
76 </div>
78 <div class="container-fluid">
79 <div class="container">
80 <div class="row nasm-info">
81 <div class="col-md-12">
82 <h2 class="centered">Your reports aren't going to <code>/dev/null</code></h2>
83 <p>We're looking for your comments, suggestions and, of course, bug-reports.
84 Report any suspicious behavior you encounter to help us improve the NASM
85 for everyone!</p>
87 <p>Please post your messages to the
88 <a href="https://sourceforge.net/mail/?group_id=6208">mailing list</a>,
89 or file a <a href="http://bugzilla.nasm.us">bug report</a>.</p>
90 <p>Don't worry if your report is not immediately addressed, even within the
91 first few days, as this is usual for us. Your report will, however, be recorded
92 and dealt with, of course, as time permits.</p>
93 </div>
94 </div>
95 </div>
96 </div>
98 <?php include "footer.inc" ?>
99 </body>
100 </html>