blob: 27bc9dd1954fdfeae2d1579ac84c65a76a871856 (
plain)
1
2
3
4
5
6
7
8
9
10
|
@extends('_layouts.master')
@section('article')
<h1 class="p-4 text-green-600 text-4xl font-bold">{{ $page->description }}</h1>
<ol>
@foreach ($page->posts($posts) as $post)
@include('_partials.postStub')
@endforeach
</ol>
@endsection
|