Compare commits
No commits in common. "4575ca9bfca2cb4083025f6ec7e14d082bf326c7" and "d2294d85723be1768d4092bd8dd98f9bbd253945" have entirely different histories.
4575ca9bfc
...
d2294d8572
5 changed files with 6 additions and 10 deletions
|
@ -1,9 +1,6 @@
|
|||
|
||||
DirectoryIndex index.php
|
||||
RedirectMatch 404 /\.git
|
||||
|
||||
RewriteEngine On
|
||||
RewriteBase /
|
||||
|
||||
RewriteCond %{REQUEST_URI} !^/www.*
|
||||
RewriteCond %{REQUEST_URI} !^www.*
|
||||
RewriteRule (.*) /www/$0 [END]
|
||||
RewriteCond %{REQUEST_FILENAME} -f
|
||||
RewriteRule (.*) /src/$0 [END]
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
|
||||
require_once '../vendor/autoload.php';
|
||||
require_once 'vendor/autoload.php';
|
||||
|
||||
$loader = new \Twig\Loader\FilesystemLoader('../templates');
|
||||
$loader = new \Twig\Loader\FilesystemLoader('templates');
|
||||
$twig = new \Twig\Environment($loader);
|
||||
|
||||
echo $twig->render('index.html',[
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Lucidragons' Fire</title>
|
||||
<link rel="stylesheet" href="/dergstyle.css">
|
||||
<link rel="stylesheet" href="src/dergstyle.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="big_title">The dergsite</h1>
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Allow from all
|
Loading…
Add table
Add a link
Reference in a new issue