jonnybarnes.uk/resources/views/bookmarks/show.blade.php

32 lines
761 B
PHP

@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>
@isset($bookmark->content)
<p>{{ $bookmark->content }}</p>
@endisset
@isset($bookmark->screenshot)
<img src="/assets/img/bookmarks/{{ $bookmark->screenshot }}.png">
@endisset
@if(count($bookmark->tags) > 0)
<ul>
@foreach($bookmark->tags as $tag)
<li><a href="/bookmarks/tagged/{{ $tag->tag }}">{{ $tag->tag }}</a></li>
@endforeach
</ul>
@endif
</div>
@stop