Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
568ffb77
Commit
568ffb77
authored
May 10, 2016
by
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
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/Http/routes.php
View file @
568ffb77
...
...
@@ -16,32 +16,32 @@
/** ADD ALL LOCALIZED ROUTES INSIDE THIS GROUP **/
Route
::
get
(
'/'
,
function
()
{
return
view
(
'index'
,
[
return
view
(
'index'
,
[
'title'
=>
'MetaGer: Sicher suchen & finden, Privatsphäre schützen'
,
'homeIcon'
]);
});
Route
::
get
(
'impressum'
,
function
()
{
return
view
(
'impressum'
)
->
with
(
'title'
,
'Impressum'
)
->
with
(
'css'
,
'impressum.css'
);
return
view
(
'impressum'
)
->
with
(
'title'
,
'Impressum'
)
->
with
(
'css'
,
'impressum.css'
);
});
Route
::
get
(
'about'
,
function
()
{
return
view
(
'about'
)
->
with
(
'title'
,
'Über Uns'
);
return
view
(
'about'
)
->
with
(
'title'
,
'Über Uns'
);
});
Route
::
get
(
'team'
,
function
()
{
return
view
(
'team.team'
)
->
with
(
'title'
,
'Team'
);
return
view
(
'team.team'
)
->
with
(
'title'
,
'Team'
);
});
Route
::
get
(
'team/pubkey-wsb'
,
function
()
{
return
view
(
'team.pubkey-wsb'
)
->
with
(
'title'
,
'Team'
);
return
view
(
'team.pubkey-wsb'
)
->
with
(
'title'
,
'Team'
);
});
Route
::
get
(
'kontakt'
,
function
()
...
...
@@ -59,6 +59,7 @@
return
view
(
'datenschutz'
)
->
with
(
'title'
,
'Datenschutz und Privatsphäre'
)
->
with
(
'css'
,
'privacy.css'
);
});
Route
::
get
(
'hilfe'
,
function
()
{
...
...
@@ -66,6 +67,4 @@
->
with
(
'title'
,
'MetaGer - hilfe'
)
->
with
(
'css'
,
'help.css'
);
});
});
});
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment