First pass at Blade templating
This commit is contained in:
9
templates/page.blade.php
Normal file
9
templates/page.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
@extends('layouts.base')
|
||||
|
||||
@section('content')
|
||||
@while(have_posts())
|
||||
{!! the_post() !!}
|
||||
@include('partials.page-header')
|
||||
@include('partials.content-page')
|
||||
@endwhile
|
||||
@endsection
|
||||
Reference in New Issue
Block a user