aboutsummaryrefslogtreecommitdiff
path: root/resources/views/layouts/app.blade.php
blob: 2ba5a2203a65d9f1c6f279980f086b289fab512e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="stylesheet" href="{{ asset('css/app.css') }}" type="text/css">
        <title>Main page</title>
    </head>
    <body>
        @yield('content')
    </body>
</html>