blessing-skin-server/resources/views/errors/general.blade.php
2019-05-01 19:04:14 +08:00

28 lines
797 B
PHP

<!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" />
<title>@yield('title') - {{ option_localized('site_name') }}</title>
<link rel="stylesheet" href="{{ webpack_assets('setup.css') }}">
</head>
<body class="container">
<p id="logo"><a href="https://github.com/bs-community/blessing-skin-server" tabindex="-1">{{ option_localized('site_name') }}</a></p>
@yield('content')
<script>
function refreshWithLangPrefer() {
var e = document.getElementById("language-chooser");
var lang = e.options[e.selectedIndex].value;
window.location = "?lang="+lang;
}
</script>
</body>
</html>