blob: 90b64de184d55d453a369a5da5138ad99cc6fe3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@extends('_layouts.master')
@section('article')
<h1>{{ $page->description }}</h1>
<ol>
@foreach ($page->posts($posts) as $post)
@include('_partials.postStub')
@endforeach
</ol>
@endsection
|