summaryrefslogtreecommitdiff
path: root/source/_layouts/category.blade.php
blob: 8232ad8fdc0e3deeeafda9474dfc497c6f60dd77 (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)
            @include('_partials.postStub')
        @endforeach
    </ol>
@endsection