server/php/basic/public_html/index.php
author rougeronj
Wed, 10 Jun 2015 15:58:42 +0200
changeset 473 6649d2d75a87
parent 442 adb907bba956
permissions -rw-r--r--
update router add function "parameters" to scene to apply the correct changes depending on the parameters sent by the router

<?php

    require_once(realpath(dirname(__FILE__) . "/../resources/config.php"));

    require_once(LIBRARY_PATH . "/templateFunctions.php");
    require_once(LIBRARY_PATH . "/dbFunctions.php");


    $variables = array(
        'renkans' => listProjects()
    );

    $css = ['static/lib/foundation/css/foundation-icons.css'];

    renderLayoutWithContentFile("home.php", $variables, $css);