This commit is contained in:
Robert
2023-12-20 14:01:25 +01:00
parent 67a26f6684
commit b6100b2ab6
115 changed files with 9538 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
@extends(".layouts.m4_7d_layout",['title' => "Page 1"])
@section("header")
@endsection
@section("body")
<p>Page 1</p>
@endsection
@section("footer")
<p>Footer of Page 1</p>
@endsection

View File

@@ -0,0 +1,13 @@
@extends(".layouts.m4_7d_layout",['title' => "Page 2"])
@section("header")
@endsection
@section("body")
<p>Page 2</p>
@endsection
@section("footer")
<p>Footer of Page 2</p>
@endsection