1
0
Fork 0
mirror of https://github.com/archtechx/laravel-tips.git synced 2025-12-12 05:14:04 +00:00
laravel-tips/resources/views/threads/show.blade.php
Lars Klopstra 28555af28f wip
2021-04-07 18:57:18 +02:00

31 lines
1,014 B
PHP

<x:layout>
<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" />
</x:container>
</section>
</main>
</x:layout>