Skip to content
Snippets Groups Projects
Commit 2a3f2244 authored by Karl's avatar Karl
Browse files

Auf der Seite ist mir außer dem jquery-Fehler keine Fehlermeldung mehr angezeigt worden

parent c27feb2e
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
...@@ -153,7 +153,6 @@ class LanguageController extends Controller ...@@ -153,7 +153,6 @@ class LanguageController extends Controller
->with('to', $to) ->with('to', $to)
->with('langTexts', $langTexts) ->with('langTexts', $langTexts)
->with('sum', $sum) ->with('sum', $sum)
->with('css', 'editLanguage.css')
->with('new', $ex["new"]); ->with('new', $ex["new"]);
} }
......
...@@ -47,7 +47,6 @@ class MailController extends Controller ...@@ -47,7 +47,6 @@ class MailController extends Controller
return view('kontakt.kontakt') return view('kontakt.kontakt')
->with('title', 'Kontakt') ->with('title', 'Kontakt')
->with('css', 'kontakt.css')
->with('js', ['openpgp.min.js', 'kontakt.js']) ->with('js', ['openpgp.min.js', 'kontakt.js'])
->with($messageType, $returnMessage); ->with($messageType, $returnMessage);
} }
...@@ -109,7 +108,6 @@ class MailController extends Controller ...@@ -109,7 +108,6 @@ class MailController extends Controller
$request->flash(); $request->flash();
return view('spende.spende') return view('spende.spende')
->with('title', 'Kontakt') ->with('title', 'Kontakt')
->with('css', 'donation.css')
->with($messageType, $messageToUser); ->with($messageType, $messageToUser);
} else { } else {
$data = ['name' => $request->input('Name', 'Keine Angabe'), 'telefon' => $request->input('Telefon', 'Keine Angabe'), 'kontonummer' => $request->input('Kontonummer'), 'bankleitzahl' => $request->input('Bankleitzahl'), 'email' => $request->input('email', 'anonymous-user@metager.de'), 'nachricht' => $request->input('Nachricht')]; $data = ['name' => $request->input('Name', 'Keine Angabe'), 'telefon' => $request->input('Telefon', 'Keine Angabe'), 'kontonummer' => $request->input('Kontonummer'), 'bankleitzahl' => $request->input('Bankleitzahl'), 'email' => $request->input('email', 'anonymous-user@metager.de'), 'nachricht' => $request->input('Nachricht')];
......
...@@ -10,7 +10,6 @@ class SitesearchController extends Controller ...@@ -10,7 +10,6 @@ class SitesearchController extends Controller
{ {
return view('widget.sitesearch') return view('widget.sitesearch')
->with('title', trans('titles.sitesearch')) ->with('title', trans('titles.sitesearch'))
->with('css', 'sitesearch.css')
->with('site', $request->input('site', '')) ->with('site', $request->input('site', ''))
->with('navbarFocus', 'dienste'); ->with('navbarFocus', 'dienste');
} }
......
...@@ -51,8 +51,7 @@ class StartpageController extends Controller ...@@ -51,8 +51,7 @@ class StartpageController extends Controller
->with('focusPages', $focusPages) ->with('focusPages', $focusPages)
->with('browser', $browser) ->with('browser', $browser)
->with('navbarFocus', 'suche') ->with('navbarFocus', 'suche')
->with('theme', $theme) ->with('theme', $theme);
->with('css', 'index.css');
} }
public function loadPage($subpage) public function loadPage($subpage)
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
@section('navbarFocus.donate', 'class="dropdown active"') @section('navbarFocus.donate', 'class="dropdown active"')
@section('content') @section('content')
<link type="text/css" rel="stylesheet" href="/css/beitritt.css" />
<h1>SUMA-EV Beitrittserklärung</h1> <h1>SUMA-EV Beitrittserklärung</h1>
<form> <form>
<div class="form-group beitritt-form-group"> <div class="form-group beitritt-form-group">
......
...@@ -64,13 +64,11 @@ Route::group( ...@@ -64,13 +64,11 @@ Route::group(
Route::get('spende', function () { Route::get('spende', function () {
return view('spende.spende') return view('spende.spende')
->with('title', trans('titles.spende')) ->with('title', trans('titles.spende'))
->with('css', 'donation.css')
->with('navbarFocus', 'foerdern'); ->with('navbarFocus', 'foerdern');
}); });
Route::get('spende/danke/{data}', ['as' => 'danke', function ($data) { Route::get('spende/danke/{data}', ['as' => 'danke', function ($data) {
return view('spende.danke') return view('spende.danke')
->with('title', trans('titles.spende')) ->with('title', trans('titles.spende'))
->with('css', ['donation.css', 'danke.css'])
->with('navbarFocus', 'foerdern') ->with('navbarFocus', 'foerdern')
->with('data', unserialize(base64_decode($data))); ->with('data', unserialize(base64_decode($data)));
}]); }]);
...@@ -83,7 +81,6 @@ Route::group( ...@@ -83,7 +81,6 @@ Route::group(
Route::get('beitritt', function () { Route::get('beitritt', function () {
return view('spende.beitritt') return view('spende.beitritt')
->with('title', trans('titles.beitritt')) ->with('title', trans('titles.beitritt'))
->with('css', 'beitritt.css')
->with('navbarFocus', 'foerdern'); ->with('navbarFocus', 'foerdern');
}); });
...@@ -113,14 +110,12 @@ Route::group( ...@@ -113,14 +110,12 @@ Route::group(
Route::get('faq', function () { Route::get('faq', function () {
return view('faq') return view('faq')
->with('title', trans('titles.faq')) ->with('title', trans('titles.faq'))
->with('css', 'help.css')
->with('navbarFocus', 'hilfe'); ->with('navbarFocus', 'hilfe');
}); });
Route::get('widget', function () { Route::get('widget', function () {
return view('widget.widget') return view('widget.widget')
->with('title', trans('titles.widget')) ->with('title', trans('titles.widget'))
->with('css', 'widget.css')
->with('navbarFocus', 'dienste'); ->with('navbarFocus', 'dienste');
}); });
...@@ -129,7 +124,6 @@ Route::group( ...@@ -129,7 +124,6 @@ Route::group(
Route::get('websearch', function () { Route::get('websearch', function () {
return view('widget.websearch') return view('widget.websearch')
->with('title', trans('titles.websearch')) ->with('title', trans('titles.websearch'))
->with('css', 'websearch.css')
->with('navbarFocus', 'dienste'); ->with('navbarFocus', 'dienste');
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment