You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
177 B

  1. <?php
  2. use \Slim\Savant;
  3. $app->get('/', function() use($app) {
  4. return Savant\render('index');
  5. });
  6. $app->get('/map', function() use($app) {
  7. return Savant\render('map');
  8. });