team_directory/resources/views/Layouts/layout.blade.php
2023-05-25 15:04:43 -04:00

20 lines
752 B
PHP
Executable file

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width" />
<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>