<!DOCTYPE html> 
<html lang="en" style="height:100%;">
    <head> 
        @include('btnewve::includes.head')
    </head>     
    <body data-spy="scroll" data-target="nav">
	<!-- header -->
	@include('btnewve::partials.header')
	<!-- header end -->
        @if(Route::currentRouteName() == 'term')
			@yield('searchres')
		@endif
		@if(Route::currentRouteName() == 'home')
		<section class="content-block gallery-2">
            <div class="container">
                <div class="underlined-title">
                    <h1>Just Arrived</h1>
                    <hr>
                    <h2>Latest addition specially added for you</h2>
                </div>
                <div class="row">
			@each('btnewve::partials.loop-video-home', get_latest_videos(), 'video')
		</div>
                <!-- /.row -->
            </div>
            <!-- /.container -->
        </section>
		@endif
		<section id="content-1-7" class="content-1-7 content-block">
            <h2 class="tags">Random Tags</h2>
            <div class="container">
                <ul>
				@foreach(get_random_terms() as $term)				
                    <li class="tags-item"><a href="{{ route('term', [$term->slug]) }}" title="{{ $term->name }}">{{ $term->name }}</a></li>
				@endforeach               
                </ul>
                <!--end of row-->
            </div>
            <!-- /.container -->
        </section>
        <!-- footer -->
@include('btnewve::partials.footer')
			<!-- footer end -->
    </body>     
</html>