1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-09-02 14:07:31 +00:00

rewrite navigation

This commit is contained in:
devfake
2015-06-22 19:16:22 +02:00
parent 7dbb617323
commit fa7243a871
5 changed files with 31 additions and 8 deletions

View File

@@ -1,8 +1,11 @@
<?php
get('/lobby', function() {
return view('app')
->withSection('inner');
return view('app')->withSection('inner');
});
get('/deck-builder', function() {
return view('app')->withSection('inner');
});
get('/', function() {
@@ -10,6 +13,5 @@
return redirect('/lobby');
}
return view('app')
->withSection('landing');
return view('app')->withSection('landing');
});