47 lines
2.2 KiB
PHP
47 lines
2.2 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/{{ $featured->id }}/{{ Str::slug($featured->name ?? 'artwork') }}" class="thumb-link">
|
|
@php
|
|
$fthumb = $featured->thumb_url ?? $featured->thumb;
|
|
@endphp
|
|
<img src="{{ $fthumb }}" class="img-responsive featured-img" alt="{{ $featured->name }}">
|
|
</a>
|
|
<div class="featured-title">{{ $featured->name }}</div>
|
|
<div class="featured-author">by {{ $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/{{ $memberFeatured->id }}/{{ Str::slug($memberFeatured->name ?? 'artwork') }}" class="thumb-link">
|
|
@php
|
|
$mthumb = $memberFeatured->thumb_url ?? $memberFeatured->thumb;
|
|
@endphp
|
|
<img src="{{ $mthumb }}" class="img-responsive featured-img" alt="{{ $memberFeatured->name }}">
|
|
</a>
|
|
<div class="featured-title">{{ $memberFeatured->name }}</div>
|
|
<div class="featured-author">by {{ $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>
|