1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-02-24 19:22:35 +01:00
LinkAce/resources/views/layouts/guest.blade.php
2020-11-13 23:25:27 +01:00

21 lines
349 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
@include('partials.header')
</head>
<body>
<div id="app">
@include('guest.partials.nav')
<main class="main container">
@include('partials.alerts')
@yield('content')
</main>
@include('partials.footer')
</div>
</body>
</html>