commit a6ffdb572f7bf37d42ad4fe62d4eaa43b20997b9 Author: Gustavo Luigi <=> Date: Wed Nov 29 00:36:10 2023 -0300 start project 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