17 lines
570 B
PHP
17 lines
570 B
PHP
@php
|
|
$BaseURL = str_replace(array('http://', 'https://'), '', $link->link)
|
|
|
|
@endphp
|
|
|
|
@include('components.favicon')
|
|
@include('components.favicon-extension')
|
|
|
|
<a class="button button-custom button button-hover icon-hover" rel="noopener noreferrer nofollow" href="{{ route('clickNumber') . '/' . $link->id . '/' . $link->link}}" @if(theme('open_links_in_same_tab') !="true" )target="_blank" @endif>
|
|
@if($params->GetSiteIcon ?? true)
|
|
<img alt="button-icon" class="icon hvr-icon" src="{{getFavIcon($link->id)}}">
|
|
@endif
|
|
|
|
{{ $link->title }}
|
|
</a>
|
|
|