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

26 lines
1.1 KiB
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
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
2021-06-13 03:56:27 +00:00
<!-- CSS only -->
2022-11-19 00:43:06 +00:00
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css">
2021-06-13 03:56:27 +00:00
<link type="text/css" rel="stylesheet" href="{{ asset('oldschool/css/main.css') }}" media="screen">
2021-05-03 12:53:40 +00:00
@yield('page-css')
@if(file_exists('css/fixes.css'))
<!-- CSS Fixes -->
<link rel="stylesheet" href="{{ asset('css/fixes.css') }}">
@endif
<link type="image/png" rel="icon" href="{{ asset('favicon.ico') }}">
2021-05-03 12:53:40 +00:00
</head>