<?php
include('../global.php');
ShowHeader();

include('files.php');
echo('<h3>Soubory ke stažení:</h3>');
echo('<div align="center" ><table width="80%" cellspacing="0" style="color: white;">');
foreach($Files as $GroupName => $Group)
{
  if($Group['link'] != '') $www = ' <a href="'.$Group['link'].'">www</a>'; else $www = '';
  echo('<tr><td colspan="3" style="border-bottom-width: thin; border-bottom-color: white; border-bottom-style: solid;"><strong>'.$Group['title'].$www.'</strong></td></tr>');
  foreach($Group['files'] as $FileName => $File)
  {
    if($File['web'] == '') $Web = '&nbsp;'; else $Web = '<a href="'.$File['web'].'">HTTP</a>';
    if($File['torrent'] == '') $Torrent = '&nbsp;'; else $Torrent = '<a href="'.$File['torrent'].'">Torrent</a>';
    echo('<tr style="font-size: small;"><td style="padding-left: 12px;">'.$File['title'].'</td><td>'.$Web.'</td><td>'.$Torrent.'</td></tr>');
  }
}
echo('<tr><td><br>
<a href="http://wow.zdechov.net:6969/">Heroes of Fantasy BitTorrent Tracker</a><br>
<a href="http://www.utorrent.com/download.php">Stáhnout BitTorrent klienta uTorrent</a><br>
<a href="http://www.slunecnice.cz/sw/torrent-harvester/">Stáhnout Torrent Harvester na hledání torrentů</a>
</td></tr>');
echo('</table></div>');

ShowFooter();
?>
