Projekt

Obecné

Profil

Stáhnout (701 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
<!doctype html>
2
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
3
<head>
4
    <meta charset="utf-8">
5
    <meta name="viewport" content="width=device-width, initial-scale=1">
6

    
7
    <!-- CSRF Token -->
8
    <meta name="csrf-token" content="{{ csrf_token() }}">
9

    
10
    <title>{{ config('app.name', 'Dev') }} - @yield('title')</title>
11

    
12
    <!-- Scripts -->
13
    <script src="{{ asset('js/app.js') }}" defer></script>
14

    
15
    <!-- Fonts -->
16

    
17
    <!-- Styles -->
18
    <link href="{{ asset('css/app.css') }}" rel="stylesheet">
19

    
20
</head>
21
<body>
22

    
23
@if(!Request::is('/'))
24
    @include('inc/sidebar')
25
@endif
26

    
27
@yield('content')
28

    
29
@if(!Request::is('/'))
30
    @include('cookieConsent::index')
31
@endif
32

    
33
</body>
34
</html>
(1-1/2)