commit ed3f2fa665c47fc1ad2a898f06bcd00efd756358 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Mon Oct 24 14:13:45 2016 +0100 Delete bower folder commit 9166de3f0ac24c9959cf635a4e54ef063486c072 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Mon Oct 24 14:12:42 2016 +0100 populate frontend folder, gzip on different machine also produces different .gz files for existing assets commit 0b1958b01e372886f564f7c08c435c52412e3a30 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Mon Oct 24 14:11:22 2016 +0100 use frotnend asset folder instead of bower commit 60a7b81b876ebb01991ca524d0e49b81f8aefd76 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Mon Oct 24 13:53:58 2016 +0100 Move frontend package management to yarn/npm
42 lines
1.6 KiB
PHP
42 lines
1.6 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
|
|
</div>
|
|
@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
|
|
@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
|