mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-30 09:48:55 +00:00
23 lines
653 B
PHP
23 lines
653 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">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>{{ config('app.name') }}</title>
|
|
|
|
<!-- Styles -->
|
|
<link href="{{ asset('assets/css/all-css.css') }}" rel="stylesheet">
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@stack('styles')
|
|
</head>
|
|
<body class="font-sans antialiased">
|
|
@yield('content')
|
|
|
|
<!-- Scripts -->
|
|
<script src="{{ asset('assets/js/all-js.js') }}"></script>
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|