blade template for a single bookmark

This commit is contained in:
Jonny Barnes 2017-10-10 16:16:50 +01:00
parent aaf25c32b8
commit f802b7c5c6

View file

@ -0,0 +1,19 @@
@extends('master')
@section('title')
Bookmark «
@stop
@section('content')
<div class="h-entry">
<a class="u-bookmark-of<?php if ($bookmark->name !== null) { echo ' h-cite'; } ?>" href="{{ $bookmark->url }}">
@isset($bookmark->name)
{{ $bookmark->name }}
@endisset
@empty($bookmark->name)
{{ $bookmark->url }}
@endempty
</a>
</div>
@stop