Files
mtdb_movie/resources/views/seo/news-article-page/prerender.blade.php
maher 703f50a09d
Some checks failed
Build / run (push) Has been cancelled
first commit
2025-10-29 11:42:25 +01:00

23 lines
441 B
PHP
Executable File

@extends('common::prerender.base')
@section('head')
@include('seo.news-article-page.seo-tags')
@endsection
@section('body')
@include('seo.menu')
<h1>{{$article->title}}</h1>
<h2>{{$article->byline}}</h2>
<h3>{{$article->source}}</h3>
@if($article->image)
<img src="{{urls()->image($article->image)}}" alt="Article image">
@endif
<article>
{!!$article->body!!}
</article>
@endsection