nyaabooru/resources/views/livewire/post-feature.blade.php

28 lines
938 B
PHP

<div class="wa-stack" style="max-height: 80vh;">
<a href="{{ url("posts/$post->id") }}" class="wa-frame wa-border-radius-l" style="max-inline-size: 100%; {{ $post->getAspectRatio() }}" wire:navigate.hover>
<img src="{{ $post->getPreviewUrl() }}" />
</a>
<div class="wa-cluster wa-gap-xl wa-caption-m">
<span class="wa-cluster wa-gap-xs">
<livewire:app.icon name="user" />
<a href="{{ url("profiles/{$post->user->id}") }}" wire:navigate.hover>{{ $post->user->name }}</a>
</span>
<div class="wa-cluster wa-gap-xs">
<livewire:app.icon name="calendar" />
<wa-format-date
month="numeric"
day="numeric"
year="numeric"
hour="numeric"
minute="numeric"
date="{{ $post->created_at }}">
</wa-format-date>
</div>
<div class="wa-cluster wa-gap-xs">
<livewire:app.icon name="hashtag" />
<a href="{{ url("posts/$post->id") }}" wire:navigate.hover>{{ $post->id }}</a>
</div>
</div>
</div>