diff --git a/resources/views/articles/show.blade.php b/resources/views/articles/show.blade.php index f9916ae..deca654 100644 --- a/resources/views/articles/show.blade.php +++ b/resources/views/articles/show.blade.php @@ -1,18 +1,34 @@ @extends('layouts.app') +@section('meta') +{{$article->meta['title']}} | Baraveli News + + + + + + + + + + + + + +@endsection + @section('content')
-
+
+ style="background-image: url({{$article->featured_image}}); filter: brightness(50%);">
-

{{$article->title}}

+

+ {{$article->title}}

- +
-

{{$article->source->name}}

+

{{$article->source->name}}

{{$article->published_date}}

@@ -20,14 +36,14 @@
- @foreach ($article->body as $block) -

- {{$block}} -
-
+ @foreach ($article->body as $block) +

+ {{$block}} +
+

- @endforeach - + @endforeach +
diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index a6d6984..4b1898d 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -4,7 +4,7 @@ - + @yield('meta')