このコミットが含まれているのは:
守矢諏訪子 2022-05-14 14:18:55 +09:00
コミット 66ccdd7398
9個のファイルの変更27行の追加3行の削除

ファイルの表示

@ -1,3 +1,4 @@
<?php include_once('includes/header.php') ?>
このURLを見つけられませんでした。
このURLを見つけられませんでした。<br />
<a href="/">トップページに戻る</a>
<?php include_once('includes/footer.php'); ?>

ファイルの表示

@ -4,7 +4,14 @@
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<title><?php echo $title; ?></title>
<link rel="stylesheet" type="text/css" href="/static/style.css" />
<style>
body {
background-image: url('/static/<?php echo $bg; ?>.png');
background-repeat: no-repeat;
background-position: <?php echo $bgpos; ?>;
}
</style>
</head>
<body>
<h1><?php echo $h1; ?></h1>
<h1><span><?php echo $h1; ?></span></h1>
<div class="nihongo">

ファイルの表示

@ -1,4 +1,6 @@
<?php include_once('includes/header.php') ?>
下記のURLからアクセス出来ます。<br />
<a href="<?php echo SITE_URL.'/'.$newurl; ?>"><?php echo SITE_URL.'/'.$newurl; ?></a>
<br /><br />
<a href="/">トップページに戻る</a>
<?php include_once('includes/footer.php'); ?>

バイナリ
www/favicon.ico ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 1.1 KiB

ファイルの表示

@ -32,6 +32,8 @@
}
else if (null === $_GET['url'] && null !== $_GET['newurl']) {
$newurl = $_GET['newurl'];
$bg = 'kasen';
$bgpos = 'top 10px left 120px';
include_once('../views/submitted.php');
}
else if (null !== $_GET['url'] && $_GET['url'] != '') {
@ -46,11 +48,15 @@
}
}
else if (null === $_GET['url'] && $_SERVER['REQUEST_URI'] == '/') {
$bg = 'rumia';
$bgpos = 'top -30px right 90px';
include_once('../views/index.php');
}
else {
$title = '076エラー - 未検出';
$h1 = '【404】未検出';
$bg = 'daityan';
$bgpos = 'top right 100px';
include_once('../views/404.php');
}
?>

バイナリ
www/static/daityan.png ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 41 KiB

バイナリ
www/static/kasen.png ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 87 KiB

バイナリ
www/static/rumia.png ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 82 KiB

ファイルの表示

@ -12,8 +12,16 @@ h1, .footer {
text-align: center;
}
h1 {
padding-bottom: 60px;
}
h1 > span {
background-color: rgba(35, 38, 41, 0.8);
}
.nihongo {
background-color: #21082b;
background-color: rgba(33, 8, 43, 0.8);
border: 1px #f2f groove;
color: #d6a9d6;
max-width: 830px;