1
0
cms11/resources/views/article.blade.php

13 lines
280 B
PHP
Raw Normal View History

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@vite('resources/css/app.css')
</head>
<body>
<h1>{!! $articleTitle !!}</h1>
<div class="article">{!! $body !!}</div>
</body>
</html>