App Layout Blade


SUBMITTED BY: zozo31

DATE: March 19, 2017, 11:35 a.m.

FORMAT: HTML+Smarty

SIZE: 1.6 kB

HITS: 1384

  1. <!DOCTYPE html>
  2. <html lang="en" style="height:100%;">
  3. <head>
  4. @include('btnewve::includes.head')
  5. </head>
  6. <body data-spy="scroll" data-target="nav">
  7. <!-- header -->
  8. @include('btnewve::partials.header')
  9. <!-- header end -->
  10. @if(Route::currentRouteName() == 'term')
  11. @yield('searchres')
  12. @endif
  13. @if(Route::currentRouteName() == 'home')
  14. <section class="content-block gallery-2">
  15. <div class="container">
  16. <div class="underlined-title">
  17. <h1>Just Arrived</h1>
  18. <hr>
  19. <h2>Latest addition specially added for you</h2>
  20. </div>
  21. <div class="row">
  22. @each('btnewve::partials.loop-video-home', get_latest_videos(), 'video')
  23. </div>
  24. <!-- /.row -->
  25. </div>
  26. <!-- /.container -->
  27. </section>
  28. @endif
  29. <section id="content-1-7" class="content-1-7 content-block">
  30. <h2 class="tags">Random Tags</h2>
  31. <div class="container">
  32. <ul>
  33. @foreach(get_random_terms() as $term)
  34. <li class="tags-item"><a href="{{ route('term', [$term->slug]) }}" title="{{ $term->name }}">{{ $term->name }}</a></li>
  35. @endforeach
  36. </ul>
  37. <!--end of row-->
  38. </div>
  39. <!-- /.container -->
  40. </section>
  41. <!-- footer -->
  42. @include('btnewve::partials.footer')
  43. <!-- footer end -->
  44. </body>
  45. </html>

comments powered by Disqus