blessing-skin-server/resources/views/setup/master.blade.php
2018-10-19 22:23:47 +08:00

31 lines
887 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>@lang('setup.wizard.master.title')</title>
<link rel="shortcut icon" href="{{ webpack_assets('favicon.ico') }}">
<link rel="stylesheet" type="text/css" href="{{ webpack_assets('setup.css') }}">
@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>