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