21 lines
783 B
PHP
21 lines
783 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Unioil - @yield('title')</title>
|
|
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
|
|
<head>
|
|
<!-- ... other meta tags -->
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
|
|
<link rel="icon" type="image/png" href="{{ asset('img/favicon_unioil.ico') }}">
|
|
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css" rel="stylesheet">
|
|
</head>
|
|
|
|
|
|
<body class="d-flex">
|
|
|
|
</body>
|
|
|
|
</html> |