1 Star 0 Fork 0

yifanes/CodeSnippets

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
error.php 2.33 KB
一键复制 编辑 原始数据 按行查看 历史
yifanes 提交于 2013-08-22 22:04 . update
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hotscot Snippets</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="index.php">Snippets</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="index.php">Home</a></li>
<li><a href="snippet.php">Add New</a></li>
</ul>
</div><!--/.nav-collapse -->
<form class="navbar-search pull-left" action="search.php" method="get">
<input type="text" name="query" class="search-query" placeholder="Search">
</form>
</div>
</div>
</div>
<div class="container">
<h1>Error!</h1>
<p>Sorry man, looks like something has gone wrong...</p>
<p>For your troubles, here's some non-flash pacman, source available on <a href="https://github.com/daleharvey/pacman" title="https://github.com/daleharvey/pacman" target="_blank">Github</a></p>
<div style="height:450px;width:342px;margin:20px auto;"id="pacman"></div>
</div> <!-- /container -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/pacman.js"></script>
<script src="js/modernizr-1.5.min.js"></script>
<script>
var el = document.getElementById("pacman");
if (Modernizr.canvas && Modernizr.localstorage &&
Modernizr.audio && (Modernizr.audio.ogg || Modernizr.audio.mp3)) {
window.setTimeout(function () { PACMAN.init(el, "./"); }, 0);
} else {
el.innerHTML = "Sorry, needs a decent browser<br /><small>" +
"(firefox 3.6+, Chrome 4+, Opera 10+ and Safari 4+)</small>";
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/yifanes/CodeSnippets.git
git@gitee.com:yifanes/CodeSnippets.git
yifanes
CodeSnippets
CodeSnippets
master

搜索帮助