@include('header')
@{ @$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; @$categories = get_the_category(); @$args = array ( 'post_type' => 'post', 'paged' => $paged, 'order' => 'DESC', 'orderby' => 'ID', 'cat' => $categories[0]->term_id ); @$query = new WP_Query( $args ); } @if( $query->have_posts() ) @while( $query->have_posts() ) {{$query->the_post()}}
@if(get_the_post_thumbnail() != '') {{the_post_thumbnail('mobile')}} @endif
{{get_the_date()}}
{{get_the_title()}}
{{the_excerpt()}}

zobacz

@endwhile
@endif {{wp_reset_postdata()}}
@include('footer')