{{ $page->title }}
11 |{!! $page->content !!}
13 | 14 |├── public ├── favicon.ico ├── robots.txt ├── assets │ ├── images │ │ ├── favicon.png │ │ ├── logo-dark.png │ │ ├── logo-color.png │ │ ├── leakedearly-color.png │ │ └── leakedearly-dark.png │ ├── fonts │ │ ├── font-awesome │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ └── proximanova │ │ │ ├── proximanova-bold.eot │ │ │ ├── proximanova-bold.ttf │ │ │ ├── proximanova-bold.woff │ │ │ ├── proximanova-extrabold.eot │ │ │ ├── proximanova-extrabold.ttf │ │ │ ├── proximanova-regular.ttf │ │ │ ├── proximanova-regular.woff │ │ │ ├── proximanova-semibold.eot │ │ │ ├── proximanova-semibold.ttf │ │ │ ├── proximanova-semibold.woff │ │ │ ├── proximanova-extrabold.woff │ │ │ ├── proxima-nova-5967ed2b9b2b1.otf │ │ │ ├── proximanova-regularitalic.eot │ │ │ ├── proximanova-regularitalic.ttf │ │ │ └── proximanova-regularitalic.woff │ └── javascripts │ │ ├── main.min.js │ │ └── jquery.sticky.min.js ├── .htaccess ├── web.config ├── index.php └── vendor │ └── sitemap │ └── styles │ ├── mobile.xsl │ ├── sitemapindex.xsl │ ├── xml.xsl │ └── google-news.xsl ├── database ├── .gitignore ├── seeds │ └── DatabaseSeeder.php ├── migrations │ ├── 2017_08_02_004716_create_password_resets_table.php │ ├── 2017_08_02_004716_create_genres_table.php │ ├── 2017_08_02_004718_add_foreign_keys_to_albums_table.php │ ├── 2017_08_02_004718_add_foreign_keys_to_tracks_table.php │ ├── 2017_08_02_004718_add_foreign_keys_to_videos_table.php │ ├── 2017_08_02_004718_add_foreign_keys_to_mixtapes_table.php │ ├── 2017_08_02_004716_create_pages_table.php │ ├── 2017_08_02_004716_create_scrape_links_table.php │ ├── 2017_08_02_011515_create_page_visits_table.php │ ├── 2017_08_02_004716_create_videos_table.php │ ├── 2017_08_02_004716_create_tracks_table.php │ ├── 2017_08_02_004716_create_albums_table.php │ └── 2017_08_02_004716_create_mixtapes_table.php └── factories │ └── ModelFactory.php ├── bootstrap ├── cache │ └── .gitignore ├── autoload.php └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── resources ├── views │ ├── blocks │ │ ├── popads.blade.php │ │ ├── latest-tracks.blade.php │ │ ├── latest-albums.blade.php │ │ ├── latest-mixtapes.blade.php │ │ ├── latest-videos.blade.php │ │ ├── footer.blade.php │ │ └── header.blade.php │ ├── vendor │ │ └── sitemap │ │ │ ├── txt.php │ │ │ ├── xml-mobile.php │ │ │ ├── sitemapindex.php │ │ │ ├── html.php │ │ │ ├── ror-rss.php │ │ │ ├── ror-rdf.php │ │ │ ├── google-news.php │ │ │ └── xml.php │ ├── widgets │ │ ├── popular │ │ │ ├── block.blade.php │ │ │ └── widget.blade.php │ │ ├── comments │ │ │ └── widget.blade.php │ │ ├── more │ │ │ ├── block.blade.php │ │ │ └── widget.blade.php │ │ └── related │ │ │ ├── widget.blade.php │ │ │ └── block.blade.php │ ├── index.blade.php │ ├── pages │ │ └── view.blade.php │ ├── albums │ │ ├── blocks │ │ │ └── track.blade.php │ │ ├── block.blade.php │ │ ├── browse.blade.php │ │ ├── track.blade.php │ │ └── view.blade.php │ ├── mixtapes │ │ ├── blocks │ │ │ └── track.blade.php │ │ ├── block.blade.php │ │ ├── browse.blade.php │ │ └── track.blade.php │ ├── tracks │ │ ├── block.blade.php │ │ ├── browse.blade.php │ │ └── view.blade.php │ ├── videos │ │ ├── block.blade.php │ │ ├── browse.blade.php │ │ └── view.blade.php │ ├── search │ │ ├── tracks.blade.php │ │ ├── albums.blade.php │ │ ├── videos.blade.php │ │ ├── mixtapes.blade.php │ │ └── index.blade.php │ ├── layouts │ │ └── app.blade.php │ ├── welcome.blade.php │ └── install │ │ └── import.blade.php ├── assets │ ├── sass │ │ ├── app.scss │ │ └── _variables.scss │ └── js │ │ ├── components │ │ └── Example.vue │ │ ├── app.js │ │ └── bootstrap.js └── lang │ └── en │ ├── pagination.php │ ├── auth.php │ └── passwords.php ├── .gitattributes ├── app ├── Page.php ├── Genre.php ├── ScrapeLink.php ├── Album.php ├── Track.php ├── Video.php ├── Mixtape.php ├── Http │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── TrimStrings.php │ │ └── RedirectIfAuthenticated.php │ ├── Controllers │ │ ├── Controller.php │ │ ├── PagesController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── RegisterController.php │ │ ├── TracksController.php │ │ ├── VideosController.php │ │ ├── AlbumsController.php │ │ ├── MixtapesController.php │ │ ├── ImageController.php │ │ └── SearchController.php │ └── Kernel.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Helpers │ └── global.php └── Exceptions │ └── Handler.php ├── .gitignore ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── CreatesApplication.php └── Feature │ └── ExampleTest.php ├── config ├── sitemap.php ├── view.php ├── services.php ├── page-visits-counter.php ├── broadcasting.php ├── filesystems.php ├── queue.php ├── cache.php ├── auth.php ├── database.php └── mail.php ├── routes ├── channels.php ├── api.php ├── console.php └── web.php ├── webpack.mix.js ├── server.php ├── .env.example ├── .env ├── LICENSE ├── package.json ├── phpunit.xml ├── composer.json ├── artisan └── README.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/views/blocks/popads.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/vendor/sitemap/txt.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Tyler, The Creator 4 | Scum Fuck Flower Boy 5 | 6 | -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | 2 | // Fonts 3 | @import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600"); 4 | 5 | // Variables 6 | @import "variables"; 7 | 8 | // Bootstrap 9 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; 10 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(UsersTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/Album.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Genre'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/Track.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Genre'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/Video.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Genre'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /resources/views/widgets/comments/widget.blade.php: -------------------------------------------------------------------------------- 1 |
{!! $page->content !!}
13 | 14 |Generated by laravel-sitemap. This is styled xml sitemap (for feature phones).
103 |This sitemap contains
| URL | 108 |
|---|
Generated by laravel-sitemap. This is styled xml sitemapindex, sorted by update date.
103 |This sitemap contains
| URL | 108 |Updated at | 109 |
|---|---|
Wait for all imports to complete and then hit the continue button below.
22 |Generated by laravel-sitemap. This is styled xml sitemap, sorted by update date.
101 |This sitemap contains
| URL | 106 |Alternates | 107 |Images | 108 |Videos | 109 |Priority | 110 |Update freq | 111 |Updated at | 112 |
|---|---|---|---|---|---|---|
Generated by laravel-sitemap. This is styled version xml sitemap (for Google News), sorted by update date.
101 |This sitemap contains
| URL | 106 |Title | 107 |Publisher | 108 |Language | 109 |Genres | 110 |Access | 111 |Updated at | 112 |
|---|---|---|---|---|---|---|
47 |
47 |
Comments
4 |