clrghouz/resources/views/layouts/partials/htmlheader.blade.php

12 lines
478 B
PHP
Raw Normal View History

2021-05-03 12:53:40 +00:00
<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 ?? '' }}">
2021-06-12 15:14:34 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-05-03 12:53:40 +00:00
2021-06-12 15:14:34 +00:00
<link href="{{ asset('oldschool/css/main.css') }}" rel="stylesheet" media="screen" type="text/css">
2021-05-03 12:53:40 +00:00
2021-06-12 15:14:34 +00:00
<link rel="icon" type="image/png" href="{{ asset('favicon.ico') }}">
2021-05-03 12:53:40 +00:00
</head>