28 lines
781 B
PHP
28 lines
781 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') - Blessing Skin Server</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ assets('styles/install.css') }}">
|
|
</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>
|
|
|
|
</body>
|
|
|
|
</html>
|