From 96ef0ea31fcabb3af06ba4537861d350e5fc037d Mon Sep 17 00:00:00 2001 From: "stephen@cubedesigners.com" Date: Thu, 17 Dec 2020 09:00:41 +0000 Subject: [PATCH] Frontend template for Elementor saved templates. Added to allow maintenance page to display properly. WIP #3678 @0.5 --- .../resources/views/single-elementor_library.blade.php | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 wp-content/themes/physioassist/resources/views/single-elementor_library.blade.php diff --git a/wp-content/themes/physioassist/resources/views/single-elementor_library.blade.php b/wp-content/themes/physioassist/resources/views/single-elementor_library.blade.php new file mode 100644 index 00000000..edae9855 --- /dev/null +++ b/wp-content/themes/physioassist/resources/views/single-elementor_library.blade.php @@ -0,0 +1,8 @@ +@extends('layouts.app') + +@section('content') + @while(have_posts()) @php(the_post()) + @include('partials.page-header') + @include('partials.content-page') + @endwhile +@endsection -- 2.39.5