server/php/basic/public_html/index.php
author rougeronj
Tue, 29 Sep 2015 18:47:11 +0200
changeset 554 32c7378d1c28
parent 442 adb907bba956
permissions -rw-r--r--
- Fix the behavior of views and parameters - Introduce views_parameters and views_nodes to loads or not the view's characteristics - Urls parameters overrides options - SetSavedView loads the current view's characteristics - view = autoscale in url forces autoscale on the current loaded view

<?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);