9 lines
158 B
PHP
9 lines
158 B
PHP
@extends('layouts.base')
|
|
|
|
@section('content')
|
|
@while(have_posts()) @php the_post() @endphp
|
|
@include('partials/content-single')
|
|
@endwhile
|
|
@endsection
|
|
|