template.blade.php 873 Bytes
Newer Older
raphael.peim's avatar
raphael.peim committed
1 2 3
<html>
    <head>
        <title>@yield('title')</title>
raphael.peim's avatar
raphael.peim committed
4 5 6 7
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <meta name="csrf-token" content="{{ csrf_token() }}">
        <link rel="stylesheet" href="../resources/bootstrap/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
raphael.peim's avatar
raphael.peim committed
8 9 10
        <link rel="stylesheet" href="../resources/css/app.css">
    </head>
    <body>
raphael.peim's avatar
raphael.peim committed
11
        <div id="header"></div>
raphael.peim's avatar
raphael.peim committed
12 13

        <div class="container">
14
            <div class="center">
raphael.peim's avatar
raphael.peim committed
15 16
                @yield('content')
            </div>
raphael.peim's avatar
raphael.peim committed
17
        </div>
raphael.peim's avatar
raphael.peim committed
18 19 20

        <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
        <script src="../resources/bootstrap/js/bootstrap.bundle.min.js"></script>
raphael.peim's avatar
raphael.peim committed
21 22
    </body>
</html>