1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-02-25 03:32:59 +01:00
LinkAce/resources/views/layouts/guest.blade.php

21 lines
349 B
PHP
Raw Normal View History

<!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>
2019-04-24 21:43:30 +02:00
@include('partials.footer')
</div>
</body>
</html>