From a6ffdb572f7bf37d42ad4fe62d4eaa43b20997b9 Mon Sep 17 00:00:00 2001 From: Gustavo Luigi <=> Date: Wed, 29 Nov 2023 00:36:10 -0300 Subject: [PATCH] start project --- config.json | 3 +++ content/index.blade.php | 10 ++++++++++ content/layout.blade.php | 22 ++++++++++++++++++++++ content/pages/inbox.blade.php | 10 ++++++++++ 4 files changed, 45 insertions(+) create mode 100644 config.json create mode 100644 content/index.blade.php create mode 100644 content/layout.blade.php create mode 100644 content/pages/inbox.blade.php diff --git a/config.json b/config.json new file mode 100644 index 0000000..f3ff240 --- /dev/null +++ b/config.json @@ -0,0 +1,3 @@ +{ + "name": "Forms" +} \ No newline at end of file diff --git a/content/index.blade.php b/content/index.blade.php new file mode 100644 index 0000000..2913be3 --- /dev/null +++ b/content/index.blade.php @@ -0,0 +1,10 @@ +@extends("template.{$template}.content.layout") +@section("title", "Forms") +@section("content") +
+
+ + +
+
+@stop \ No newline at end of file diff --git a/content/layout.blade.php b/content/layout.blade.php new file mode 100644 index 0000000..b24475e --- /dev/null +++ b/content/layout.blade.php @@ -0,0 +1,22 @@ + + + + + + + @yield("title") + + + +
+

@yield("title")

+
+ +
+ @yield('content') +
+ + \ No newline at end of file diff --git a/content/pages/inbox.blade.php b/content/pages/inbox.blade.php new file mode 100644 index 0000000..300c837 --- /dev/null +++ b/content/pages/inbox.blade.php @@ -0,0 +1,10 @@ +@extends("template.{$template}.content.layout") +@section("title", "Inbox") +@section("content") +
+
+ + +
+
+@stop \ No newline at end of file