mirror of https://git.stjo.hn/planiverse
50 lines
1.8 KiB
PHP
50 lines
1.8 KiB
PHP
<!doctype html>
|
|
<html lang="{{ app()->getLocale() }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{{ $mastodon_domain }} | Search</title>
|
|
|
|
<link rel="stylesheet" href="{{ url('css/styles.css') }}" />
|
|
</head>
|
|
<body>
|
|
<h1>{{ $mastodon_domain }} | Search</h1>
|
|
|
|
@component('navigation')
|
|
@endcomponent
|
|
|
|
<form method="post" action="{{ route('search') }}">
|
|
<input type="text" name="search_term" placeholder="Search accounts and statuses" required autofocus />
|
|
<input type="submit" value="Search" />
|
|
{{ csrf_field() }}
|
|
</form>
|
|
|
|
@if ($results !== null)
|
|
<ul>
|
|
@foreach ($results['accounts'] as $account)
|
|
<li>
|
|
<span class="account" title="{{ $account['acct'] }}">
|
|
<a href="{{ $account['url'] }}">
|
|
<img
|
|
src="{{ $account['avatar'] }}"
|
|
alt="{{ $account['acct'] }}"
|
|
class="avatar"
|
|
/>
|
|
{{ $account['display_name'] }}
|
|
@if ($account['bot'] ?? false) 🤖 @endif
|
|
@if ($account['locked']) 🔒 @endif
|
|
</a>
|
|
</span>
|
|
</li>
|
|
@endforeach
|
|
@foreach ($results['statuses'] as $status)
|
|
@component('status', ['status' => $status])
|
|
@endcomponent
|
|
@endforeach
|
|
</ul>
|
|
@endif
|
|
</body>
|
|
</html>
|