PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
themes
/
wowy
/
views
@php $layout = MetaBox::getMetaData($post, 'layout', true); $layout = ($layout && in_array($layout, array_keys(get_blog_single_layouts()))) ? $layout : 'blog-right-sidebar'; Theme::layout($layout); @endphp <div class="blog__details"> <div class="single-page blog__listing"> <div class="single-header style-2"> <h2>{{ $post->name }}</h2> <div class="single-header-meta"> <div class="entry-meta meta-1 font-xs mt-15 mb-15"> <span class="post-by">{{ __('By') }} {{ $post->author->name }}</span> <span class="post-on has-dot">{{ $post->created_at->translatedFormat('M d, Y') }}</span> <span class="time-reading has-dot">{{ __(':count mins read', ['count' => get_time_to_read($post)]) }}</span> <span class="hit-count has-dot">{{ __(':count Views', ['count' => number_format($post->views)]) }}</span> </div> <div class="social-icons social-icons-colored-hover"> <ul class="text-grey-5 d-inline-block"> <li><strong class="mr-10">{{ __('Share this') }}:</strong></li> <li class="social-facebook"> <a href="https://www.facebook.com/sharer/sharer.php?u={{ urlencode($post->url) }}" target="_blgiank"><i class="fab fa-facebook-f"></i></a> </li> <li class="social-twitter"> <a href="https://twitter.com/intent/tweet?url={{ urlencode($post->url) }}&text={{ strip_tags($post->description) }}" target="_blank"><i class="fab fa-twitter"></i></a> </li> <li class="social-linkedin"> <a href="https://www.linkedin.com/shareArticle?mini=true&url={{ urlencode($post->url) }}&summary={{ rawurldecode(strip_tags($post->description)) }}" target="_blank"><i class="fab fa-linkedin"></i></a> </li> </ul> </div> </div> </div> <div class="single-content"> {!! clean($post->content) !!} <br> {!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, theme_option('facebook_comment_enabled_in_post', 'yes') == 'yes' ? Theme::partial('comments') : null) !!} </div> <div class="entry-bottom mt-50 mb-30 wow fadeIn animated" style="visibility: visible; animation-name: fadeIn;"> <div class="tags w-50 w-sm-100"> @if (!$post->tags->isEmpty()) @foreach ($post->tags as $tag) <a href="{{ $tag->url }}" rel="tag" class="hover-up btn btn-sm btn-rounded mr-10 mb-10">{{ $tag->name }}</a> @endforeach @endif </div> <div class="social-icons social-icons-colored-hover"> <ul class="text-grey-5 d-inline-block"> <li><strong class="mr-10">{{ __('Share this') }}:</strong></li> <li class="social-facebook"> <a href="https://www.facebook.com/sharer/sharer.php?u={{ urlencode($post->url) }}" target="_blgiank"><i class="fab fa-facebook-f"></i></a> </li> <li class="social-twitter"> <a href="https://twitter.com/intent/tweet?url={{ urlencode($post->url) }}&text={{ strip_tags($post->description) }}" target="_blank"><i class="fab fa-twitter"></i></a> </li> <li class="social-linkedin"> <a href="https://www.linkedin.com/shareArticle?mini=true&url={{ urlencode($post->url) }}&summary={{ rawurldecode(strip_tags($post->description)) }}" target="_blank"><i class="fab fa-linkedin"></i></a> </li> </ul> </div> </div> </div> </div> @php $relatedPosts = get_related_posts($post->id, 2); @endphp @if ($relatedPosts->count()) <div class="loop-grid pr-30"> <h4 class="mb-20">{{ __('Related Articles') }}</h4> <div class="row"> @foreach ($relatedPosts as $relatedItem) <div class="col-lg-6 col-md-6"> <article class="wow fadeIn animated hover-up mb-30"> <div class="post-thumb img-hover-scale"> <a href="{{ $relatedItem->url }}"> <img src="{{ RvMedia::getImageUrl($relatedItem->image, 'medium', false, RvMedia::getDefaultImage()) }}" alt="{{ $relatedItem->name }}"> </a> @if ($relatedItem->first_category->name) <div class="entry-meta"> <a class="entry-meta meta-2" href="{{ $relatedItem->first_category->url }}">{{ $relatedItem->first_category->name }}</a> </div> @endif </div> <div class="entry-content-2"> <h3 class="post-title mb-15"> <a href="{{ $relatedItem->url }}">{{ $relatedItem->name }}</a></h3> <div class="entry-meta meta-1 font-xs color-grey mt-10 pb-10"> <div> <span class="post-on has-dot"> <i class="far fa-clock"></i> {{ $relatedItem->created_at->translatedFormat('M d, Y') }}</span> <span class="hit-count has-dot">{{ __(':count Views', ['count' => number_format($relatedItem->views)]) }}</span> </div> <a href="{{ $relatedItem->url }}" class="text-brand">{{ __('Read more') }} <i class="fa fa-arrow-right fw-300 text-brand ml-5"></i></a> </div> </div> </article> </div> @endforeach </div> </div> @endif
[-] tag.blade.php
[edit]
[-] post.blade.php
[edit]
[+]
..
[-] index.blade.php
[edit]
[-] 503.blade.php
[edit]
[-] page.blade.php
[edit]
[-] search.blade.php
[edit]
[+]
templates
[-] loop.blade.php
[edit]
[-] 404.blade.php
[edit]
[-] 500.blade.php
[edit]
[+]
ecommerce
[-] category.blade.php
[edit]