mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-02-24 19:22:35 +01:00
21 lines
349 B
PHP
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>
|