Projekt

Obecné

Profil

Stáhnout (966 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
    <!-- Fonts -->
10
    <link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
11

    
12
    <!-- Bootstrap -->
13
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
14
</head>
15
<body>
16
        <nav aria-label="breadcrumb">
17
            <ol class="breadcrumb">
18
               @yield('breadcrumb')
19
            </ol>
20
        </nav>
21

    
22
    <div class="container">
23
        <div class="content">
24
            @yield('content')
25
        </div>
26

    
27
        <hr>
28
        <footer class="container">
29
            © 2020
30
        </footer>
31
    </div>
32
</body>
33
</html>
    (1-1/1)