diff options
| -rw-r--r-- | resources/views/list.blade.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/views/list.blade.php b/resources/views/list.blade.php index 344de46..5878aa9 100644 --- a/resources/views/list.blade.php +++ b/resources/views/list.blade.php @@ -27,6 +27,10 @@ } @endif +.permalink:hover { + text-decoration: none; +} + @endsection @section('content') @@ -114,6 +118,11 @@ <a style="color:inherit;" href="{{ $article->url }}" title="{{ $article->title }}"> 🔗 {{ $article->title }} </a> +@if ( "show" != Request::route()->getName() ) + <div class="float-right"> + <a class="permalink" href="{{ route('show', $article->id) }}" title="Permalink">🛈</a> + </div> +@endif </h1> <div class="card-body"> @if ( ! is_null($article->getCategories()) ) |
