nyaabooru/resources/views/livewire/posts/thumbnail.blade.php

10 lines
315 B
PHP

<div style="max-inline-size: 256px;">
<a
id="post_{{ $post->id }}"
href="{{ url("posts/$post->id") }}"
class="wa-frame wa-border-radius-l"
style="border: 2px solid var(--wa-color-{{ $post->getRatingColor() }}-border-loud);"
wire:navigate.hover>
<img src="{{ $post->getThumbUrl() }}" />
</a>
</div>