blob: bd62fd252a26641897ace1b2e0b029fe37d6a49c (
plain)
1
2
3
4
5
6
7
8
9
10
|
@extends('_layouts.master')
@section('article')
<h1>{{ $page->description }}</h1>
<ol>
@foreach ($page->posts($posts) as $post)
<li><a href="{{ $post->getUrl() }}">{{$post->title }}</a></li>
@endforeach
</ol>
@endsection
|