2017-01-22 22:19:19 +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" />
|
|
|
|
<title>{{ trans('setup.wizard.master.title') }}</title>
|
|
|
|
<link rel="shortcut icon" href="{{ assets('dist/images/favicon.ico') }}">
|
2017-07-03 20:54:19 +08:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ assets('dist/css/install.css') }}">
|
2017-01-22 22:19:19 +08:00
|
|
|
@yield('style')
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="container">
|
|
|
|
<p id="logo"><a href="https://github.com/printempw/blessing-skin-server" tabindex="-1">Blessing Skin Server</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>
|
|
|
|
|
|
|
|
@yield('script')
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|