home.blade.php 1.1 KB

1234567891011121314151617181920212223242526
  1. @extends('site.news.partial.layout')
  2. @section('body')
  3. <div class="container">
  4. <div class="row px-3">
  5. @foreach($posts->slice(0,1) as $post)
  6. <div class="col-12 bg-light d-flex justify-content-center align-items-center mt-2 mb-4" style="height:300px;">
  7. <div class="mx-5">
  8. <p class="small text-danger mb-0 text-uppercase">{{$post->category}}</p>
  9. <p class="small text-muted">{{$post->published_at->format('F d, Y')}}</p>
  10. <p class="h1" style="font-size: 2.6rem;font-weight: 700;"><a class="text-dark text-decoration-none" href="{{$post->permalink()}}">{{$post->title}}</a></p>
  11. </div>
  12. </div>
  13. @endforeach
  14. @foreach($posts->slice(1) as $post)
  15. <div class="col-6 bg-light d-flex justify-content-center align-items-center mt-3 px-5" style="height:300px;">
  16. <div class="mx-0">
  17. <p class="small text-danger mb-0 text-uppercase">{{$post->category}}</p>
  18. <p class="small text-muted">{{$post->published_at->format('F d, Y')}}</p>
  19. <p class="h1" style="font-size: 2rem;font-weight: 700;"><a class="text-dark text-decoration-none" href="{{$post->permalink()}}">{{$post->title}}</a></p>
  20. </div>
  21. </div>
  22. @endforeach
  23. </div>
  24. </div>
  25. @endsection