blessing-skin-server/resources/views/errors/general.tpl

28 lines
781 B
PHP
Raw Normal View History

2016-03-12 18:37:06 +08:00
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex,nofollow" />
2016-07-21 22:01:57 +08:00
<title>@yield('title') - Blessing Skin Server</title>
2017-01-22 16:35:09 +08:00
<link rel="stylesheet" type="text/css" href="{{ assets('styles/install.css') }}">
2016-03-12 18:37:06 +08:00
</head>
<body class="container">
<p id="logo"><a href="https://github.com/printempw/blessing-skin-server" tabindex="-1">Blessing Skin Server</a></p>
2016-07-21 22:01:57 +08:00
@yield('content')
2016-03-12 18:37:06 +08:00
2017-01-08 15:20:50 +08:00
<script>
function refreshWithLangPrefer() {
var e = document.getElementById("language-chooser");
var lang = e.options[e.selectedIndex].value;
window.location = "?lang="+lang;
}
</script>
2016-03-12 18:37:06 +08:00
</body>
</html>