summaryrefslogtreecommitdiff
path: root/source/_layouts/tag.blade.php
blob: 86bcc97114dcdf8ee18b092cd0e104211ef61fe4 (plain)
1
2
3
4
5
6
7
8
9
10
@extends('_layouts.master')

@section('article')
    <ol>
        @foreach ($page->posts($posts) as $post)
            @include('_partials.postStub')
        @endforeach
    </ol>
@endsection