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" />
|
2019-05-01 19:04:14 +08:00
|
|
|
<title>@yield('title') - {{ option_localized('site_name') }}</title>
|
2018-08-21 09:03:30 +08:00
|
|
|
<link rel="stylesheet" href="{{ webpack_assets('setup.css') }}">
|
2016-03-12 18:37:06 +08:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="container">
|
2019-05-01 19:04:14 +08:00
|
|
|
<p id="logo"><a href="https://github.com/bs-community/blessing-skin-server" tabindex="-1">{{ option_localized('site_name') }}</a></p>
|
2016-03-12 18:37:06 +08:00
|
|
|
|
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>
|