summaryrefslogtreecommitdiff
path: root/source/_layouts/category.blade.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2020-02-26 21:54:33 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2020-02-26 21:54:33 +0000
commit9ce9cf50af6b81c76b7acd9ef31dace11cee728b (patch)
treee6b697a4e865d655980fe12921189b1cc311dd9f /source/_layouts/category.blade.php
parent588aa1b58f49eb7eee453ffba6c7aa2d33171912 (diff)
Add post stub
Diffstat (limited to 'source/_layouts/category.blade.php')
-rw-r--r--source/_layouts/category.blade.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/_layouts/category.blade.php b/source/_layouts/category.blade.php
index bd62fd2..8232ad8 100644
--- a/source/_layouts/category.blade.php
+++ b/source/_layouts/category.blade.php
@@ -4,7 +4,7 @@
<h1>{{ $page->description }}</h1>
<ol>
@foreach ($page->posts($posts) as $post)
- <li><a href="{{ $post->getUrl() }}">{{$post->title }}</a></li>
+ @include('_partials.postStub')
@endforeach
</ol>
@endsection