1
0
Fork 0
mirror of https://github.com/archtechx/laravel-tips.git synced 2025-12-11 21:14:02 +00:00
laravel-tips/resources/views/threads/show.blade.php
2021-04-09 18:53:27 +02:00

31 lines
1.1 KiB
PHP

<x:layout :title="$thread->title" :preview="$thread->title">
<header class="relative py-24">
<div
class="absolute w-full transform skew-y-12 pointer-events-none h-72 md:h-96 -translate-y-1/4 bg-gradient-to-br from-yellow-300 to-pink-400 mix-blend-multiply">
</div>
<x:container>
<div class="flex flex-col items-center space-y-6 text-center text-yellow-900">
<h1 class="text-4xl font-bold tracking-tighter md:text-5xl lg:text-8xl">
🔥 {{ $thread->title }}
</h1>
<div class="prose md:prose-xl">
{!! Str::markdown($thread->content) !!}
</div>
<x:socials />
</div>
</x:container>
</header>
<main class="flex-1 divide-y" role="feed">
<x:feed :tips="$tips" />
<section class="py-12 bg-white md:py-24">
<x:container>
<x:author-card :tip="$thread" :links="$thread->links()" />
</x:container>
</section>
</main>
</x:layout>