mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
327 B
PHTML
13 lines
327 B
PHTML
@php
|
|
$cid = 'col' . str_random(6);
|
|
@endphp
|
|
<p>
|
|
<a class="text-dark font-weight-bold" data-toggle="collapse" href="#{{$cid}}" role="button" aria-expanded="false" aria-controls="{{$cid}}">
|
|
<i class="fas fa-chevron-down mr-2"></i>
|
|
{{ $title }}
|
|
</a>
|
|
<div class="collapse" id="{{$cid}}">
|
|
{{ $slot }}
|
|
</div>
|
|
</p>
|