public_timeline.blade.php (791B)
1 <!doctype html> 2 <html lang="{{ app()->getLocale() }}"> 3 <head> 4 <meta charset="utf-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 8 <title>{{ $mastodon_domain }} | Public Timeline</title> 9 10 <link rel="stylesheet" href="{{ url('css/styles.css') }}" /> 11 </head> 12 <body> 13 <h1>{{ $mastodon_domain }} | Public Timeline</h1> 14 15 @component('navigation') 16 @endcomponent 17 18 <ul> 19 @foreach ($statuses as $status) 20 @component('status', ['status' => $status]) 21 @endcomponent 22 @endforeach 23 </ul> 24 25 @component('pagination', ['links' => $links]) 26 @endcomponent 27 </body> 28 </html>