-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.php
34 lines (30 loc) · 1.06 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
<?php
include('template/init.php');
include('template/function.php');
?><!DOCTYPE html>
<html lang="zh">
<head>
<?php include('template/head.php'); ?>
</head>
<body>
<?php include('template/menu.php'); ?>
<div class="container marketing">
<hr class="featurette-divider">
<br /><br />
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong><h3>404 這裡沒有你要找的東西喔!</h3></strong>
</div>
<meta http-equiv="refresh" content="3; url=index.php">
<hr>
<footer>
<p>© Company 2013</p>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>