summaryrefslogtreecommitdiff
path: root/source/_layouts/tag.blade.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2020-03-07 22:33:31 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2020-03-07 22:33:31 +0000
commit8a59a4d61f20c7a7c03362d3f3a44e0197fd2827 (patch)
treeb24e9a317adddab2668795d036edd1b6d882e1a3 /source/_layouts/tag.blade.php
parent9d7bf4de4d22933cabe28aef6a3cf0d7414f6be2 (diff)
Style post snippets
Diffstat (limited to 'source/_layouts/tag.blade.php')
-rw-r--r--source/_layouts/tag.blade.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/_layouts/tag.blade.php b/source/_layouts/tag.blade.php
new file mode 100644
index 0000000..86bcc97
--- /dev/null
+++ b/source/_layouts/tag.blade.php
@@ -0,0 +1,10 @@
+@extends('_layouts.master')
+
+@section('article')
+ <ol>
+ @foreach ($page->posts($posts) as $post)
+ @include('_partials.postStub')
+ @endforeach
+ </ol>
+@endsection
+