15 lines
248 B
PHP
15 lines
248 B
PHP
@php
|
|
/**
|
|
* Template Name: Custom Template
|
|
*/
|
|
@endphp
|
|
|
|
@extends('layouts.base')
|
|
|
|
@section('content')
|
|
@while(have_posts()) @php the_post() @endphp
|
|
@include('partials.page-header')
|
|
@include('partials.content-page')
|
|
@endwhile
|
|
@endsection
|