website: re-order the test builds page so mobile is first

This commit is contained in:
Jon Atkins 2014-03-27 21:02:12 +00:00
parent 6bc18d6c86
commit a9d58bc646

View File

@ -15,6 +15,7 @@ builds.
<?php <?php
include_once ( "code/desktop-download.php" ); include_once ( "code/desktop-download.php" );
include_once ( "code/mobile-download.php" );
$path = "test"; $path = "test";
@ -42,25 +43,11 @@ else
{ {
} }
$apkfile = "$path/IITC_Mobile-$path.apk";
?> ?>
<h3 id="test-desktop">Desktop test build</h3>
<?php
iitcDesktopDownload ( $path );
?>
<hr>
<h4>Desktop test plugins</h4>
<?php
iitcDesktopPluginDownloadTable ( $path );
?>
<hr>
<h3 id="test-mobile">Mobile test build</h3> <h3 id="test-mobile">Mobile test build</h3>
<div class="alert alert-block alert-info"> <div class="alert alert-block alert-info">
@ -70,10 +57,6 @@ Test builds will be called "IITCm Test" - while the regular release builds remai
<?php <?php
include_once ( "code/mobile-download.php" );
$apkfile = "$path/IITC_Mobile-$path.apk";
if ( file_exists($apkfile) ) if ( file_exists($apkfile) )
{ {
@ -87,5 +70,21 @@ else
?> ?>
<h3 id="test-desktop">Desktop test build</h3>
<?php
iitcDesktopDownload ( $path );
?>
<hr>
<h4>Desktop test plugins</h4>
<?php
iitcDesktopPluginDownloadTable ( $path );
?>
<hr>