13 lines
229 B
PHP
13 lines
229 B
PHP
{{--
|
|
Template Name: Custom Template
|
|
--}}
|
|
|
|
@extends('layouts.base')
|
|
|
|
@section('content')
|
|
@while(have_posts()) @php(the_post())
|
|
@include('partials.page-header')
|
|
@include('partials.content-page')
|
|
@endwhile
|
|
@endsection
|