-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
40 lines (40 loc) · 1.38 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
require 'header.php';
?>
<div id="Content">
<div id="MainMotto">
<h1>RackTables is a datacenter asset management system</h1>
</div>
<div id="MainScreenshot">
<img src="img/screenshots/shot-indexpage.png" width="471" height="313" alt="index page screenshot" />
</div>
<div id="MainText">
<p>RackTables is a nifty and robust solution for datacenter and server room asset management. It helps document hardware assets, network addresses, space in racks, networks configuration and much much more!</p>
<div class="Download">
<h3>Check the</h3>
<div class="DownloadButton">
<a href="demo.php">Live demo (<?php echo $demorelease; ?>)</a>
</div>
</div>
<div class="Download">
<?php
if (isset ($currentrelease) && $currentrelease !== $lastrelease)
{
?>
<h3><span class=away>The current release</span></h3>
<div class="DownloadButton">
<a href="https://sourceforge.net/projects/racktables/files/RackTables-<?php echo $currentrelease;?>.tar.gz/download">RackTables <?php echo $currentrelease; ?></a>
</div>
<br/>
<?php
}
?>
<h3><span class=away>The latest stable release</span></h3>
<div class="DownloadButton">
<a href="https://sourceforge.net/projects/racktables/files/RackTables-<?php echo $lastrelease;?>.tar.gz/download">RackTables <?php echo $lastrelease; ?></a>
</div>
</div>
</div> <!-- MainText -->
</div> <!-- Content -->
<?php
require 'footer.php';