@extends('layout.landing')
@section('title', 'Krojač Biznis | Novosti iz Krojačeve škole i sveta eLearninga')
@section('html-class')
class="landing-page"
@endsection
@section('content')
@include('front.partials.landing._header-not-logged-in')
@include('front.partials.novosti._landing-top-section')
@if($posts->total() == 0)
@endif
@if($posts->total() > 0)
@foreach ($posts as $post)
@include('front.partials.novosti._listing-item-box')
@endforeach
@include('front.novosti._index-pagination')
@endif
@include('front.partials.landing._bottom-section')
@include('front-inc._footer')
@endsection
@section('add-scripts')
@parent
@endsection