Skip to content

Instantly share code, notes, and snippets.

@jongravois
Created September 12, 2020 11:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jongravois/a7bb5bb655f6d0cc5843c56e3ca2163e to your computer and use it in GitHub Desktop.
Save jongravois/a7bb5bb655f6d0cc5843c56e3ca2163e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta http-equiv="refresh" content="{{ config('session.lifetime') * 60 }}">
<title>{{ config('app.name', 'UAM') }}</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Nunito:wght@300;400;600;700;800;900&display=swap">
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.6.0/dist/alpine.js" defer></script>
<livewire:styles />
@bukStyles(true)
@stack('styles')
<!-- Styles -->
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
</head>
<body>
<div class="antialiased m-0 p-0">
{{ $slot }}
</div>
@stack('modals')
<livewire:scripts />
@bukScripts(true)
@stack('scripts')
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment