Files
bedrock/templates/page.blade.php
2016-12-03 10:27:22 -08:00

10 lines
191 B
PHP

@extends('layouts.base')
@section('content')
@while(have_posts())
{!! the_post() !!}
@include('partials.page-header')
@include('partials.content-page')
@endwhile
@endsection