23 lines
719 B
PHP
23 lines
719 B
PHP
|
|
@extends('layouts.guest')
|
||
|
|
|
||
|
|
@section('title', $article['title'])
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<article>
|
||
|
|
<a href="{{ url()->previous() }}"> ← Go Back</a>
|
||
|
|
<img src="{{ $article['header_image_url'] }}" />
|
||
|
|
<h1>{{ $article['title'] }}</h1>
|
||
|
|
<h2>{{ $article['subtitle'] }}</h2>
|
||
|
|
<p>{{ $article['author']['display_name'] }}</p>
|
||
|
|
<p>Published At: {{ $article['published_at'] }}</p>
|
||
|
|
<ul>
|
||
|
|
<li><a href="{{ $article['primary_link'] }}">Link 1</a></li>
|
||
|
|
<li><a href="{{ $article['secondary_link'] }}">Link 2</a></li>
|
||
|
|
<li><a href="{{ $article['mastodon_handle'] }}">Mastodon</a></li>
|
||
|
|
</ul>
|
||
|
|
<main>
|
||
|
|
{!! $article['body'] !!}
|
||
|
|
</main>
|
||
|
|
</article>
|
||
|
|
@endsection
|