planiverse

A minimalist, no-JS front-end for Mastodon.
git clone https://git.stjo.hn/planiverse
Log | Files | Refs | README | LICENSE

delete_status.blade.php (777B)


      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 }} | Delete Status</title>
      9 
     10         <link rel="stylesheet" href="{{ url('css/styles.css') }}" />
     11     </head>
     12     <body>
     13         <h1>{{ $mastodon_domain }} | Delete Status</h1>
     14 
     15         @component('navigation')
     16 	@endcomponent
     17 
     18         <div class="warning">
     19             <p>Are you sure you want to delete this status? Click the delete link again to confirm.</p>
     20         </div>
     21 
     22         <ul>
     23             @component('status', ['status' => $status])
     24             @endcomponent
     25         </ul>
     26     </body>
     27 </html>