47 lines
2.4 KiB
PHP
47 lines
2.4 KiB
PHP
{{-- Featured row --}}
|
|
<div class="row featured-row">
|
|
<div class="col-md-4 col-sm-12">
|
|
<div class="featured-card effect2">
|
|
<div class="card-header">Featured Artwork</div>
|
|
<div class="card-body text-center">
|
|
<a href="/art/{{ data_get($featured, 'id') }}/{{ Str::slug(data_get($featured, 'name') ?? 'artwork') }}" class="thumb-link">
|
|
@php
|
|
$fthumb = data_get($featured, 'thumb_url') ?? data_get($featured, 'thumb');
|
|
@endphp
|
|
<img src="{{ $fthumb }}" class="img-responsive featured-img" alt="{{ data_get($featured, 'name') }}">
|
|
</a>
|
|
<div class="featured-title">{{ data_get($featured, 'name') }}</div>
|
|
<div class="featured-author">by {{ data_get($featured, 'uname') }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-12">
|
|
<div class="featured-card effect2">
|
|
<div class="card-header">Featured by Members Vote</div>
|
|
<div class="card-body text-center">
|
|
<a href="/art/{{ data_get($memberFeatured, 'id') }}/{{ Str::slug(data_get($memberFeatured, 'name') ?? 'artwork') }}" class="thumb-link">
|
|
@php
|
|
$mthumb = data_get($memberFeatured, 'thumb_url') ?? data_get($memberFeatured, 'thumb');
|
|
@endphp
|
|
<img src="{{ $mthumb }}" class="img-responsive featured-img" alt="{{ data_get($memberFeatured, 'name') }}">
|
|
</a>
|
|
<div class="featured-title">{{ data_get($memberFeatured, 'name') }}</div>
|
|
<div class="featured-author">by {{ data_get($memberFeatured, 'uname') }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-12">
|
|
<div class="featured-card join-card effect2">
|
|
<div class="card-header">Join to Skinbase World</div>
|
|
<div class="card-body text-center">
|
|
<a href="{{ route('register') }}" title="Join Skinbase">
|
|
<img src="/gfx/sb_join.jpg" alt="Join SkinBase Community" class="img-responsive join-img center-block">
|
|
</a>
|
|
<div class="join-text">Join to Skinbase and be part of our great community! We have big collection of high quality Photography, Wallpapers and Skins for popular applications.</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|