php-integration #21

Closed
fred.boniface wants to merge 146 commits from php-integration into main
4 changed files with 6 additions and 13 deletions
Showing only changes of commit 9a1abaeb39 - Show all commits

View File

@ -2,8 +2,7 @@
<html>
<head>
<?php
set_include_path("./../");
include './page-blocks/headers.php';
include '../page-blocks/headers.php';
?>
<title>Athena - Error 403</title>
</head>
@ -11,7 +10,7 @@
<body>
<!-- Main Content Begins -->
<?php require "./page-blocks/title-image.php";?>
<?php require "../page-blocks/title-image.php";?>
<h1>You're not allowed to see that!</h1>
@ -19,9 +18,6 @@
<h3>403 - Forbidden</h3>
<!-- Footer -->
<?php include './page-blocks/footer.php';?>
</body>
</html>

View File

@ -10,7 +10,7 @@
<body>
<!-- Main Content Begins -->
<?php include "./page-blocks/title-image.php";?>
<?php include "../page-blocks/title-image.php";?>
<h1>Oh no! That page can't be found</h1>

View File

@ -2,8 +2,7 @@
<html>
<head>
<?php
set_include_path("./../");
include './page-blocks/headers.php';
include '../page-blocks/headers.php';
?>
<title>Athena - Server Error</title>
</head>
@ -11,7 +10,7 @@
<body>
<!-- Main Content Begins -->
<?php require "./page-blocks/title-image.php";?>
<?php require "../page-blocks/title-image.php";?>
<h1>Ah, sorry. There's a problem at our end</h1>
@ -19,9 +18,6 @@
<h3>50x - Server Error</h3>
<!-- Footer -->
<?php include './page-blocks/footer.php';?>
</body>
</html>

View File

@ -97,6 +97,7 @@ body {
.actionbutton {
display: inline-block;
text-decoration: none;
cursor: pointer;
background-color: #3c78d8;
border: none;