16 lines
328 B
PHP
16 lines
328 B
PHP
{{--
|
|
Frontend layout wrapper for the News section.
|
|
Extends the main app layout.
|
|
--}}
|
|
@extends('layouts.app')
|
|
|
|
@section('title', $metaTitle ?? config('news.rss_title', 'News'))
|
|
|
|
@if(isset($metaDescription))
|
|
@section('meta_description', $metaDescription)
|
|
@endif
|
|
|
|
@section('content')
|
|
@yield('news_content')
|
|
@endsection
|