2018-08-11 18:38:31 +01:00
|
|
|
<!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">
|
|
|
|
|
2018-08-13 00:28:45 +01:00
|
|
|
<title>{{ $mastodon_domain }} | {{ $timeline }}</title>
|
2018-08-11 18:38:31 +01:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="/css/styles.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-08-13 00:28:45 +01:00
|
|
|
<h1>{{ $mastodon_domain }} | {{ $timeline }}</h1>
|
|
|
|
|
2018-08-11 18:38:31 +01:00
|
|
|
@foreach ($statuses as $status)
|
2018-08-12 17:55:07 +01:00
|
|
|
@component('status', ['status' => $status])
|
|
|
|
@endcomponent
|
2018-08-11 18:38:31 +01:00
|
|
|
@endforeach
|
2018-08-13 00:28:45 +01:00
|
|
|
|
|
|
|
@if ($links['prev'] !== null)
|
|
|
|
<span><a href="{{ $links['prev'] }}">Previous</a></span>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($links['next'] !== null)
|
|
|
|
<span><a href="{{ $links['next'] }}">Next</a></span>
|
|
|
|
@endif
|
2018-08-11 18:38:31 +01:00
|
|
|
</body>
|
|
|
|
</html>
|