diff --git a/views/404.php b/views/404.php index 566483d..544b381 100644 --- a/views/404.php +++ b/views/404.php @@ -1,3 +1,4 @@ - このURLを見つけられませんでした。 + このURLを見つけられませんでした。
+ トップページに戻る diff --git a/views/includes/header.php b/views/includes/header.php index 713fda4..87c1537 100644 --- a/views/includes/header.php +++ b/views/includes/header.php @@ -4,7 +4,14 @@ <?php echo $title; ?> + -

+

diff --git a/views/submitted.php b/views/submitted.php index 2d74cef..8c86316 100644 --- a/views/submitted.php +++ b/views/submitted.php @@ -1,4 +1,6 @@ 下記のURLからアクセス出来ます。
+

+ トップページに戻る diff --git a/www/favicon.ico b/www/favicon.ico new file mode 100644 index 0000000..6faab9d Binary files /dev/null and b/www/favicon.ico differ diff --git a/www/index.php b/www/index.php index 5ca1ca5..67d13b1 100644 --- a/www/index.php +++ b/www/index.php @@ -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'); } ?> diff --git a/www/static/daityan.png b/www/static/daityan.png new file mode 100644 index 0000000..c30d78a Binary files /dev/null and b/www/static/daityan.png differ diff --git a/www/static/kasen.png b/www/static/kasen.png new file mode 100644 index 0000000..32902e6 Binary files /dev/null and b/www/static/kasen.png differ diff --git a/www/static/rumia.png b/www/static/rumia.png new file mode 100644 index 0000000..5dd5cda Binary files /dev/null and b/www/static/rumia.png differ diff --git a/www/static/style.css b/www/static/style.css index 7199b37..10c9a4b 100644 --- a/www/static/style.css +++ b/www/static/style.css @@ -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;