2023-05-25 15:04:43 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="initial-scale=1, width=device-width" />
|
2023-05-31 16:23:00 -04:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
|
2023-05-25 15:04:43 -04:00
|
|
|
<link rel="shortcut icon" href="{{ asset('/favicon.ico') }}">
|
|
|
|
|
|
|
|
|
|
<title>@yield('Title')</title>
|
|
|
|
|
<!-- Fonts -->
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
|
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
|
|
|
|
|
@yield('css')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@yield('Content')
|
|
|
|
|
|
|
|
|
|
</html>
|