Spaces:
Sleeping
Sleeping
Commit
·
91a1bbb
1
Parent(s):
3d294c7
Estructura inicial
Browse files- app/.htaccess +1 -0
- app/config/config.php +1 -0
- app/controllers/.gitkeep +1 -0
- app/helpers/.gitkeep +1 -0
- app/init.php +1 -0
- app/libs/Controller.php +1 -0
- app/libs/Core.php +1 -0
- app/libs/Database.php +1 -0
- app/models/.gitkeep +1 -0
- app/views/inc/footer.php +1 -0
- app/views/inc/header.php +1 -0
- app/views/welcome/index.php +1 -0
- public/css/styles.css +1 -0
- public/img/.gitkeep +1 -0
- public/index.php +1 -0
- public/js/main.js +1 -0
app/.htaccess
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Options -Indexes
|
app/config/config.php
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
app/controllers/.gitkeep
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
app/helpers/.gitkeep
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
app/init.php
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
app/libs/Controller.php
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
app/libs/Core.php
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
app/libs/Database.php
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
app/models/.gitkeep
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
app/views/inc/footer.php
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
app/views/inc/header.php
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
app/views/welcome/index.php
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
public/css/styles.css
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
public/img/.gitkeep
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
public/index.php
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|
public/js/main.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
""
|