Skip to content
Snippets Groups Projects
front.php 1.24 KiB
Newer Older
  • Learn to ignore specific revisions
  • <?php
    
    $smarty->assign("news",$DB->GetArray("(SELECT * FROM news WHERE expiry > now() ORDER BY date DESC LIMIT 3) UNION SELECT * FROM news WHERE sticky=true and expiry > now() ORDER BY date DESC"));
    $output = $smarty->fetch("front.tpl");
    $smarty->assign("title", "Home");
    $smarty->assign("body", $output);
    
    if (!$session->loggedin) {
    	$output = file_get_contents("../static/fragments/Join.txt");
    } else {
    	$output = "<div class=\"cbb\"><h3>You are logged in</h3><p>If you would like to contribute to the site or report a bug, please contact chckens or dez.</p></div>";
    //include('users.php');
    //$output .= $result;
    
    include('electionreminder.php');
    $output .= $result;
    
    include('planetposts.php');
    $output .= $result;
    include('forumposts.php');
    $output .= $result;
    
    }
    
    
    $output .= "<div class=\"cbb\"><h3>SUCS Tools</h3><p>Download the SUCS Tools to make it easier to access SUCS services from your computer.</p><ul><li><a href=\"/files/sucstools-latest.exe\">SUCS Tools for Windows</a></li><li><a href=\"/files/SUCS-latest.dmg\">SUCS Tools for Mac OS X</a></li></ul><p>More information about the tools is available in \"<a href=\"/Knowledge/Help/SUCS%20Services/Using%20the%20SUCS%20Tools\">Using the SUCS Tools</a>\".</p></div>";
    
    
    $smarty->assign("secondary",$output);
    ?>