This repository has been archived by the owner on Feb 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
76 lines (73 loc) · 3.73 KB
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en" class="mdl-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<meta name="theme-color" content="#4caf50">
<meta name="msapplication-navbutton-color" content="#4caf50">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="google" content="notranslate">
<title>Proxima B</title>
<link rel="icon" type="image/png" href="assets/img_proximab.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="assets/material.css">
</head>
<body>
<div class="mdl-color--grey-100 mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Proxima B</span>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Proxima B</span>
<nav class="mdl-navigation">
<?php
$navs = json_decode(file_get_contents('navs.json'), true);
foreach ($navs as $key => $value) {
echo '<a class="mdl-navigation__link" href="' . $value . '">' . $key . '</a>';
}
?>
</nav>
</div>
<main class="mdl-layout__content">
<div id="top"></div>
<div class="mdl-grid">
<div class="mdl-color--white mdl-shadow--2dp mdl-cell mdl-cell--8-col mdl-cell--2-offset-desktop" id="content" style="padding: 0 24px 24px 24px">
<h4>Error <span class=mdl-color-text--primary>404</span> Not Found.</h4>
<span class=mdl-color-text--primary>페이지를 표시할 수 없습니다.</span><br><br>
요청하신 파일을 찾을 수 없거나, 서버에서 제거 되었습니다. URL을 확인해 주시기 바랍니다.
</div>
<div class="mdl-color--white mdl-shadow--2dp mdl-cell mdl-cell--8-col mdl-cell--2-offset-desktop" id="content" style="padding: 0 24px 0 24px">
<ul class="mdl-list">
<?php
foreach ($navs as $key => $value) {
echo '<li class="mdl-list__item">';
echo '<a class="mdl-color-text--grey-700 mdl-button mdl-js-button mdl-js-ripple-effect" href="' . $value . '" style="margin: 0 auto;">' . $key . '</a>';
echo '</li>';
}
?>
</ul>
</div>
</div>
<footer class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
<div class="mdl-logo">Copyright 2017 <a class="mdl-color-text--grey-100" href="https://github.com/Astro36">Astro</a>. All rights reserved.</div>
</div>
<div class="mdl-mini-footer__right-section">
<ul class="mdl-mini-footer__link-list">
<li><a href="index.php">Home</a></li>
<li><a href="#top">Back to Top</a></li>
</ul>
</div>
</footer>
</main>
</div>
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
</body>
</html>