26 lines
420 B
PHP
26 lines
420 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ $article->title }}</title>
|
|
<style>
|
|
/* body{
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
} */
|
|
img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
{!! $article->content !!}
|
|
</body>
|
|
|
|
</html>
|