add open sans via https

This commit is contained in:
Arno Kaimbacher 2019-01-16 14:21:03 +01:00
parent 4504a0dcf8
commit b74927b5f2
2 changed files with 14 additions and 15 deletions

View File

@ -21,7 +21,7 @@
<link rel='stylesheet' href="{{ asset('css/langswitch.css') }}" /> <link rel='stylesheet' href="{{ asset('css/langswitch.css') }}" />
<!-- Fonts --> <!-- Fonts -->
<link rel='stylesheet' href="{{ asset('css/font-awesome.css') }}" /> <link rel='stylesheet' href="{{ asset('css/font-awesome.css') }}" />
<link href="http://fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C700italic%2C400%2C300%2C700%2C800&amp;ver=3.8.1" type="text/css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C700italic%2C400%2C300%2C700%2C800&amp;ver=3.8.1" type="text/css" rel="stylesheet">
@yield('head') @yield('head')

View File

@ -1,19 +1,18 @@
<?php <?php
class TestCase extends Illuminate\Foundation\Testing\TestCase { class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
/** $app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
return $app;
}
return $app;
}
} }