12 lines
478 B
PHP
12 lines
478 B
PHP
<head>
|
|
<title>{{ config('app.name') }} - @yield('htmlheader_title', 'Your title here')</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="description" content="{{ $decription ?? '' }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link href="{{ asset('oldschool/css/main.css') }}" rel="stylesheet" media="screen" type="text/css">
|
|
|
|
<link rel="icon" type="image/png" href="{{ asset('favicon.ico') }}">
|
|
</head>
|