commit d198ef5fc3a535b6384f5de33ac41cf8d2bd9a40 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Wed Oct 26 22:00:11 2016 +0100 Add latest bridgy related changes commit b1c72c8f70df03134bea14d2668fb90915fb7853 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Wed Oct 26 19:13:15 2016 +0100 Have links on Facebook commit e99618618ae1fc84081db241d05fd15ce65af66f Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Wed Oct 26 18:15:47 2016 +0100 Add a job to syndicate to facebook commit c37653e2b1a2237172b24dfa3b0bc4da30b52927 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Wed Oct 26 18:15:25 2016 +0100 Fix some typos in the comments commit c65bd20a94478cc1e5832b22d48d824a00411f92 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Wed Oct 26 17:54:13 2016 +0100 Add necessary a links to facilitate bridgy publishing commit b62d3a4daf39ebf8c495f381702a25ed0715e1fe Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Wed Oct 26 17:46:04 2016 +0100 Send webmentions to bridgy in order to syndicate
45 lines
1.8 KiB
PHP
45 lines
1.8 KiB
PHP
@extends('master')
|
||
|
||
@section('title')
|
||
{{ strip_tags($note->note) }} « Notes « Jonny Barnes
|
||
@stop
|
||
|
||
@section('content')
|
||
<div class="h-entry">
|
||
@include('templates.note', ['note' => $note])
|
||
@foreach($replies as $reply)
|
||
<div class="reply p-comment h-cite">
|
||
<a class="h-card vcard mini-h-card p-author" href="{{ $reply['url'] }}">
|
||
<img src="{{ $reply['photo'] }}" alt="" class="photo u-photo logo"> <span class="fn">{{ $reply['name'] }}</span>
|
||
</a> said at <a class="dt-published" href="{{ $reply['source'] }}">{{ $reply['date'] }}</a>
|
||
<div class="e-content p-name">
|
||
{!! $reply['reply'] !!}
|
||
</div>
|
||
</div>
|
||
@endforeach
|
||
@if(count($likes) > 0)<h1 class="notes-subtitle">Likes</h1>@endif
|
||
@foreach($likes as $like)
|
||
<a href="{{ $like['url'] }}"><img src="{{ $like['photo'] }}" alt="profile picture of {{ $like['name'] }}" class="like-photo"></a>
|
||
@endforeach
|
||
@if(count($reposts) > 0)<h1 class="notes-subtitle">Reposts</h1>@endif
|
||
@foreach($reposts as $repost)
|
||
<p><a class="h-card vcard mini-h-card p-author" href="{{ $repost['url'] }}">
|
||
<img src="{{ $repost['photo'] }}" alt="profile picture of {{ $repost['name'] }}" class="photo u-photo logo"> <span class="fn">{{ $repost['name'] }}</span>
|
||
</a> reposted this at <a href="{{ $repost['source'] }}">{{ $repost['date'] }}</a>.</p>
|
||
@endforeach
|
||
<!-- these empty tags are for https://brid.gy’s publishing service -->
|
||
<a href="https://brid.gy/publish/twitter">
|
||
<a href="https://brid.gy/publish/facebook">
|
||
</div>
|
||
@stop
|
||
|
||
@section('scripts')
|
||
@include('templates.mapbox-links')
|
||
|
||
<script src="/assets/frontend/Autolinker.min.js"></script>
|
||
<script src="/assets/js/links.js"></script>
|
||
<script src="/assets/js/maps.js"></script>
|
||
|
||
<script src="/assets/prism/prism.js"></script>
|
||
<link rel="stylesheet" href="/assets/prism/prism.css">
|
||
@stop
|