Skip to content
Snippets Groups Projects
Commit 568ffb77 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Merge branch '19-fehler-in-routes-php' into 'master'

* Fehler in der Routes.php behoben

Closes #19

See merge request !15
parents be5ece7f 53d948e5
No related branches found
No related tags found
1 merge request!15* Fehler in der Routes.php behoben
...@@ -16,32 +16,32 @@ ...@@ -16,32 +16,32 @@
/** ADD ALL LOCALIZED ROUTES INSIDE THIS GROUP **/ /** ADD ALL LOCALIZED ROUTES INSIDE THIS GROUP **/
Route::get('/', function() Route::get('/', function()
{ {
return view('index', [ return view('index', [
'title' => 'MetaGer: Sicher suchen & finden, Privatsphäre schützen', 'title' => 'MetaGer: Sicher suchen & finden, Privatsphäre schützen',
'homeIcon']); 'homeIcon']);
}); });
Route::get('impressum', function() Route::get('impressum', function()
{ {
return view('impressum') return view('impressum')
->with('title', 'Impressum') ->with('title', 'Impressum')
->with('css', 'impressum.css'); ->with('css', 'impressum.css');
}); });
Route::get('about', function() Route::get('about', function()
{ {
return view('about') return view('about')
->with('title', 'Über Uns'); ->with('title', 'Über Uns');
}); });
Route::get('team', function() Route::get('team', function()
{ {
return view('team.team') return view('team.team')
->with('title', 'Team'); ->with('title', 'Team');
}); });
Route::get('team/pubkey-wsb', function() Route::get('team/pubkey-wsb', function()
{ {
return view('team.pubkey-wsb') return view('team.pubkey-wsb')
->with('title', 'Team'); ->with('title', 'Team');
}); });
Route::get('kontakt', function() Route::get('kontakt', function()
...@@ -59,6 +59,7 @@ ...@@ -59,6 +59,7 @@
return view('datenschutz') return view('datenschutz')
->with('title', 'Datenschutz und Privatsphäre') ->with('title', 'Datenschutz und Privatsphäre')
->with('css', 'privacy.css'); ->with('css', 'privacy.css');
});
Route::get('hilfe', function() Route::get('hilfe', function()
{ {
...@@ -66,6 +67,4 @@ ...@@ -66,6 +67,4 @@
->with('title', 'MetaGer - hilfe') ->with('title', 'MetaGer - hilfe')
->with('css', 'help.css'); ->with('css', 'help.css');
}); });
}); });
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment