fix reference of styles on setup pages

This commit is contained in:
printempw 2017-01-22 22:19:19 +08:00
parent d8f94a68fb
commit 4c248bd88a
3 changed files with 37 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* @Author: printempw
* @Date: 2016-07-21 13:38:26
* @Last Modified by: printempw
* @Last Modified time: 2017-01-20 22:15:50
* @Last Modified time: 2017-01-22 20:45:06
*/
'use strict';
@ -135,6 +135,7 @@ gulp.task('zip', () => {
'!.gitignore',
'!.git/**/*.*',
'!.git/',
'!.gitmodules',
'!.gitattributes',
'!artisan',
'!gulpfile.js',

View File

@ -14,6 +14,11 @@
@yield('content')
<!-- YOU CAN NOT MODIFIY THE COPYRIGHT TEXT W/O PERMISSION -->
<div id="copyright-text" class="hide">
{!! bs_copyright() !!}
</div>
<!-- App Scripts -->
{!! bs_footer('auth') !!}

View File

@ -0,0 +1,30 @@
<!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') }}">
<link rel="stylesheet" type="text/css" href="{{ assets('dist/styles/install.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>