summaryrefslogtreecommitdiff
path: root/source/_partials
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/_partials
parent04f7e8f440b98037e295fe16f0f948a8e9d0c234 (diff)
Remove Jigswaw files
Diffstat (limited to 'source/_partials')
-rw-r--r--source/_partials/post-as-rss-item.blade.php14
-rw-r--r--source/_partials/postStub.blade.php18
2 files changed, 0 insertions, 32 deletions
diff --git a/source/_partials/post-as-rss-item.blade.php b/source/_partials/post-as-rss-item.blade.php
deleted file mode 100644
index b172280..0000000
--- a/source/_partials/post-as-rss-item.blade.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<entry>
- <id>{{ $entry->getUrl() }}</id>
- <link type="text/html" rel="alternate" href="{{ $entry->getUrl() }}" />
- <title>{{ $entry->title }}</title>
- <published>{{ date(DATE_ATOM, $entry->date) }}</published>
- <updated>{{ date(DATE_ATOM, $entry->date) }}</updated>
- <author>
- <name>{{ $entry->author }}</name>
- </author>
- <summary type="html">{{ $entry->excerpt ?? $entry->description }}...</summary>
- <content type="html"><![CDATA[
- @includeFirst(['_posts.' . $entry->getFilename(), '_posts._tmp.' . $entry->getFilename()])
- ]]></content>
-</entry>
diff --git a/source/_partials/postStub.blade.php b/source/_partials/postStub.blade.php
deleted file mode 100644
index 6eefb6a..0000000
--- a/source/_partials/postStub.blade.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php use \Illuminate\Support\Str; ?>
-<li class="sm:flex sm:flex-row sm:justify-between hover:bg-gray-700 p-4 pb-8">
- <a title="Go to post" href="{{ $post->getUrl() }}">
- <h4 class="text-green-300 text-3xl font-bold">{{$post->title }}</h4>
- <p class="text-2xl">{{ $post->description }}</p>
- </a>
- <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="{{ $post->getDate()->format('Y-m-d') }}">
- {{ $post->getDate()->format('M d, Y') }}
- </time>
- <div class="order-1 sm:order-2">
- @foreach ($post->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>
-</li>
-