* Modified index and publications routes
This commit is contained in:
parent
21fca7d34a
commit
0f5698004c
|
@ -16,12 +16,12 @@ use Illuminate\Support\Facades\Route;
|
|||
// @route('home')
|
||||
// @route('index')
|
||||
Route::get('/', function () {
|
||||
return view('layout', ['heading' => 'Description', 'content' => '<p>Hello World!</p>']);
|
||||
return view('layout');
|
||||
});
|
||||
|
||||
// @route('publications')
|
||||
Route::get('/publications', function() {
|
||||
return view('layout', ['heading' => 'Publications', 'content' => '<p><ul><li>A</li><li>B</li><li>C</li></ul></p>']);
|
||||
return view('layout');
|
||||
});
|
||||
|
||||
// @route('profile')
|
||||
|
|
Loading…
Reference in New Issue