├── nginx.conf ├── db └── sqlite.db ├── lib ├── views │ ├── site │ │ ├── terms.php │ │ ├── error.php │ │ ├── home.php │ │ └── about.php │ ├── user │ │ ├── error.php │ │ ├── profile.php │ │ ├── login.php │ │ ├── register.php │ │ └── edit.php │ ├── footer.php │ └── header.php ├── controllers │ ├── site.php │ ├── user.php │ ├── router.php │ └── app.php ├── config.php ├── helpers.php └── models │ ├── cache.php │ ├── template.php │ └── user.php ├── static ├── images │ └── favicon.ico ├── js │ └── functions.js └── css │ └── main.css ├── .gitignore ├── .htaccess ├── index.php └── README /nginx.conf: -------------------------------------------------------------------------------- 1 | if (!-e $request_filename) { 2 | rewrite ^/(.*)$ /index.php?$1 last; 3 | } -------------------------------------------------------------------------------- /db/sqlite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevGrow/jQuery-Mobile-PHP-MVC/HEAD/db/sqlite.db -------------------------------------------------------------------------------- /lib/views/site/terms.php: -------------------------------------------------------------------------------- 1 | 2 |
These are our terms of service.
-------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevGrow/jQuery-Mobile-PHP-MVC/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS generated files # 2 | ###################### 3 | .DS_Store* 4 | ehthumbs.db 5 | Icon? 6 | Thumbs.db 7 | -------------------------------------------------------------------------------- /static/js/functions.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | // Enter whatever JavaScript functions you need here. 3 | }); -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond $1 !^(index\.php|install\.php|lib|static|robots\.txt) 3 | RewriteRule ^(.*)$ index.php/$1 [L] -------------------------------------------------------------------------------- /lib/views/site/error.php: -------------------------------------------------------------------------------- 1 | 2 |Sorry, we couldn't find that page. Please check the URL or try again later.
5 |You must be logged in or an administrator to access this content. Please login and try again.
-------------------------------------------------------------------------------- /lib/views/footer.php: -------------------------------------------------------------------------------- 1 | 2 |© 2010
4 |