WIP
BIN
public/.DS_Store
vendored
Normal file
21
public/.htaccess
Normal file
@@ -0,0 +1,21 @@
|
||||
<IfModule mod_rewrite.c>
|
||||
<IfModule mod_negotiation.c>
|
||||
Options -MultiViews -Indexes
|
||||
</IfModule>
|
||||
|
||||
RewriteEngine On
|
||||
|
||||
# Handle Authorization Header
|
||||
RewriteCond %{HTTP:Authorization} .
|
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||
|
||||
# Redirect Trailing Slashes If Not A Folder...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_URI} (.+)/$
|
||||
RewriteRule ^ %1 [L,R=301]
|
||||
|
||||
# Send Requests To Front Controller...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^ index.php [L]
|
||||
</IfModule>
|
||||
BIN
public/covers/image-1-big.jpg
Normal file
|
After Width: | Height: | Size: 213 KiB |
BIN
public/covers/image-1.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
public/covers/image-10-big.jpg
Normal file
|
After Width: | Height: | Size: 400 KiB |
BIN
public/covers/image-10.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
public/covers/image-11-big.jpg
Normal file
|
After Width: | Height: | Size: 310 KiB |
BIN
public/covers/image-11.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
public/covers/image-12-big.jpg
Normal file
|
After Width: | Height: | Size: 126 KiB |
BIN
public/covers/image-12.jpg
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
public/covers/image-2-big.jpg
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
public/covers/image-2.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/covers/image-3-big.jpg
Normal file
|
After Width: | Height: | Size: 386 KiB |
BIN
public/covers/image-3.jpg
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
public/covers/image-4-big.jpg
Normal file
|
After Width: | Height: | Size: 506 KiB |
BIN
public/covers/image-4.jpg
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
public/covers/image-5-big.jpg
Normal file
|
After Width: | Height: | Size: 635 KiB |
BIN
public/covers/image-5.jpg
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
public/covers/image-6-big.jpg
Normal file
|
After Width: | Height: | Size: 196 KiB |
BIN
public/covers/image-6.jpg
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
public/covers/image-7-big.jpg
Normal file
|
After Width: | Height: | Size: 128 KiB |
BIN
public/covers/image-7.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/covers/image-8-big.jpg
Normal file
|
After Width: | Height: | Size: 184 KiB |
BIN
public/covers/image-8.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/covers/image-9-big.jpg
Normal file
|
After Width: | Height: | Size: 291 KiB |
BIN
public/covers/image-9.jpg
Normal file
|
After Width: | Height: | Size: 35 KiB |
0
public/favicon.ico
Normal file
17
public/index.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
// Determine if the application is in maintenance mode...
|
||||
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
||||
require $maintenance;
|
||||
}
|
||||
|
||||
// Register the Composer autoloader...
|
||||
require __DIR__.'/../vendor/autoload.php';
|
||||
|
||||
// Bootstrap Laravel and handle the request...
|
||||
(require_once __DIR__.'/../bootstrap/app.php')
|
||||
->handleRequest(Request::capture());
|
||||
BIN
public/placeholder.jpg
Normal file
|
After Width: | Height: | Size: 2.1 MiB |
2
public/robots.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow:
|
||||