blade template for a single bookmark
This commit is contained in:
parent
aaf25c32b8
commit
f802b7c5c6
1 changed files with 19 additions and 0 deletions
19
resources/views/bookmarks/show.blade.php
Normal file
19
resources/views/bookmarks/show.blade.php
Normal 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
|
Loading…
Add table
Reference in a new issue