├── src ├── advanced-cache.php ├── plugins │ └── .gitkeep ├── themes │ ├── .gitkeep │ └── base │ │ ├── app │ │ ├── assets │ │ │ ├── js │ │ │ │ └── .gitkeep │ │ │ ├── css │ │ │ │ └── .gitkeep │ │ │ └── index.php │ │ ├── autoload │ │ │ ├── .gitkeep │ │ │ ├── admin │ │ │ │ └── .gitkeep │ │ │ ├── front │ │ │ │ ├── .gitkeep │ │ │ │ ├── routes.php │ │ │ │ └── assets.php │ │ │ ├── sidebars.php │ │ │ └── theme-support.php │ │ ├── commands │ │ │ ├── .gitkeep │ │ │ └── ExampleCommand.php │ │ ├── config │ │ │ ├── .gitkeep │ │ │ ├── comments.php │ │ │ ├── wel.php │ │ │ ├── plugins.php │ │ │ ├── assets.php │ │ │ ├── logs.php │ │ │ ├── view.php │ │ │ ├── queue.php │ │ │ ├── auth.php │ │ │ ├── cache.php │ │ │ ├── database.php │ │ │ ├── mail.php │ │ │ ├── session.php │ │ │ └── app.php │ │ ├── tests │ │ │ ├── .gitkeep │ │ │ ├── Unit │ │ │ │ └── ExampleTest.php │ │ │ ├── boottest.php │ │ │ └── TestCase.php │ │ ├── database │ │ │ ├── seeds │ │ │ │ ├── .gitkeep │ │ │ │ └── DatabaseSeeder.php │ │ │ └── migrations │ │ │ │ └── .gitkeep │ │ ├── lang │ │ │ └── en │ │ │ │ ├── ajax.php │ │ │ │ ├── pagination.php │ │ │ │ ├── reminders.php │ │ │ │ └── validation.php │ │ ├── views │ │ │ └── master.blade.php │ │ └── Controllers │ │ │ └── BaseController.php │ │ ├── screenshot.png │ │ ├── functions.php │ │ ├── style.css │ │ ├── phpunit.xml │ │ └── index.php ├── uploads │ └── .gitkeep ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── mu-plugins │ ├── weloquent-bootstrap-plugins.php │ └── _prevent_theme_error.php └── bootstrap │ ├── testing.php │ ├── production.php │ ├── paths.php │ ├── local.php │ ├── shared.php │ └── start.php ├── .gitattributes ├── app ├── public │ └── packages │ │ └── .gitkeep ├── laravel │ ├── commands │ │ └── .gitkeep │ ├── controllers │ │ ├── .gitkeep │ │ ├── BaseController.php │ │ └── HomeController.php │ ├── config │ │ ├── packages │ │ │ └── .gitkeep │ │ ├── compile.php │ │ ├── local │ │ │ └── app.php │ │ ├── testing │ │ │ ├── cache.php │ │ │ └── session.php │ │ ├── services.php │ │ ├── workbench.php │ │ ├── view.php │ │ ├── remote.php │ │ ├── auth.php │ │ ├── queue.php │ │ ├── cache.php │ │ ├── database.php │ │ ├── mail.php │ │ ├── session.php │ │ └── app.php │ ├── database │ │ ├── seeds │ │ │ ├── .gitkeep │ │ │ └── DatabaseSeeder.php │ │ ├── migrations │ │ │ └── .gitkeep │ │ └── .gitignore │ ├── start │ │ ├── local.php │ │ ├── artisan.php │ │ └── global.php │ ├── storage │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── logs │ │ │ └── .gitignore │ │ ├── meta │ │ │ └── .gitignore │ │ ├── views │ │ │ └── .gitignore │ │ └── sessions │ │ │ └── .gitignore │ ├── tests │ │ ├── ExampleTest.php │ │ └── TestCase.php │ ├── views │ │ ├── emails │ │ │ └── auth │ │ │ │ └── reminder.blade.php │ │ └── hello.php │ ├── lang │ │ └── en │ │ │ ├── pagination.php │ │ │ ├── reminders.php │ │ │ └── validation.php │ ├── models │ │ └── User.php │ ├── routes.php │ └── filters.php ├── .gitattributes ├── .gitignore ├── .env.php ├── .htaccess ├── server.php ├── phpunit.xml ├── composer.json ├── bootstrap │ ├── paths.php │ ├── autoload.php │ └── start.php ├── index.php └── artisan ├── wp-cli.yml ├── robots.txt ├── index.php ├── .env.example.php ├── wp-config.php ├── .gitignore ├── package.json ├── composer.json ├── wel ├── README.md ├── gulpfile.js └── LICENSE /src/advanced-cache.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /app/public/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wp-cli.yml: -------------------------------------------------------------------------------- 1 | path: htdocs/cms -------------------------------------------------------------------------------- /app/laravel/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/laravel/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /app/laravel/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/laravel/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themes/base/app/assets/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themes/base/app/autoload/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themes/base/app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themes/base/app/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themes/base/app/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/laravel/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/storage/.gitignore: -------------------------------------------------------------------------------- 1 | services.manifest -------------------------------------------------------------------------------- /src/themes/base/app/assets/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themes/base/app/autoload/admin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themes/base/app/autoload/front/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themes/base/app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/laravel/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /app/laravel/start/local.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /bootstrap/compiled.php 2 | /vendor 3 | composer.phar 4 | composer.lock 5 | .DS_Store 6 | Thumbs.db 7 | -------------------------------------------------------------------------------- /src/themes/base/app/lang/en/ajax.php: -------------------------------------------------------------------------------- 1 | 'The AJAX request is not valid.' 5 | 6 | ]; -------------------------------------------------------------------------------- /src/themes/base/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruno-barros/w.eloquent/HEAD/src/themes/base/screenshot.png -------------------------------------------------------------------------------- /src/themes/base/app/autoload/front/routes.php: -------------------------------------------------------------------------------- 1 | 'partials.comments.item' 10 | ]; -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | 3 | Disallow: /cms/ 4 | Disallow: /vendor/ 5 | Disallow: /src/storage/ 6 | Disallow: /src/plugins/ 7 | Disallow: /src/mu-plugins/ 8 | 9 | # http://www.check-domains.com/sitemap/index.php # 10 | # sitemap: http://www.yousite.com/sitemap.xml 11 | -------------------------------------------------------------------------------- /app/.env.php: -------------------------------------------------------------------------------- 1 | call('UserTableSeeder'); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /src/themes/base/functions.php: -------------------------------------------------------------------------------- 1 | call('UserTableSeeder'); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /app/laravel/tests/ExampleTest.php: -------------------------------------------------------------------------------- 1 | client->request('GET', '/'); 13 | 14 | $this->assertTrue($this->client->getResponse()->isOk()); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/laravel/controllers/BaseController.php: -------------------------------------------------------------------------------- 1 | layout)) 13 | { 14 | $this->layout = View::make($this->layout); 15 | } 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/themes/base/app/views/master.blade.php: -------------------------------------------------------------------------------- 1 | 2 | > 3 |
4 | 5 | 6 |
52 |
53 |
54 | @loop
55 |
56 | 404
65 | 66 | @endloop 67 | 68 |