15 lines
195 B
PHP
15 lines
195 B
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>@yield('title')</title>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
@section('content')
|
||
|
<p>Aucun contenu pour le moment.</p>
|
||
|
@show
|
||
|
|
||
|
</body>
|
||
|
</html>
|