Projekt

Obecné

Profil

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

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

    
9
    <!-- CSS styles -->
10
    <link href="{{ asset('css/app.css') }}" rel="stylesheet" type="text/css">
11
</head>
12
<body>
13
        <nav aria-label="breadcrumb">
14
            <ol class="breadcrumb">
15
               @yield('breadcrumb')
16
            </ol>
17
        </nav>
18

    
19
    <div class="container">
20
        <div class="content">
21
            @yield('content')
22
        </div>
23

    
24
        <hr>
25
        <footer class="container">
26
            © 2020
27
        </footer>
28
    </div>
29
</body>
30
</html>
    (1-1/1)