This commit is contained in:
S170H
2023-12-17 22:17:05 +01:00
parent 67a26f6684
commit 99d78584ec
120 changed files with 9988 additions and 5 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