summaryrefslogtreecommitdiff
path: root/source/_layouts/post.blade.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2021-05-20 23:15:30 +0100
committerDavid T. Sadler <davidtsadler@googlemail.com>2021-05-20 23:15:30 +0100
commit23af28d0587025ee2b41dd5620442309860d06d6 (patch)
tree259ea96b557a827bce402624d0833b7068100955 /source/_layouts/post.blade.php
parent04f7e8f440b98037e295fe16f0f948a8e9d0c234 (diff)
Remove Jigswaw files
Diffstat (limited to 'source/_layouts/post.blade.php')
-rw-r--r--source/_layouts/post.blade.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/source/_layouts/post.blade.php b/source/_layouts/post.blade.php
deleted file mode 100644
index 49ca172..0000000
--- a/source/_layouts/post.blade.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php use \Illuminate\Support\Str; ?>
-@extends('_layouts.master')
-
-@section('article')
- <header class="sm:flex sm:flex-row sm:justify-between p-4 pb-8 border-b border-green-100 border-dashed mb-8">
- <div>
- <h1 class="text-green-300 text-3xl font-bold">{{$page->title }}</h1>
- <p class="text-green-600 text-2xl">{{ $page->description }}</p>
- </div>
- <div class="mt-8 sm:mt-0 text-right flex flex-row sm:flex-col">
- <time class="inline-block p-2 order-2 sm:order-1 ml-2" datetime="{{ $page->getDate()->format('Y-m-d') }}">
- {{ $page->getDate()->format('M d, Y') }}
- </time>
- <div class="order-1 sm:order-2">
- @foreach ($page->tags as $tag)
- <a class="inline-block rounded py-2 px-4 {{Str::slug($tag) }}" href="/tags/{{ Str::slug($tag) }}">{{ $tag }}</a>
- @endforeach
- </div>
- </div>
- </header>
- <section class="post-content">
- @yield('content')
- </section>
-@endsection
-