fix reference of styles on setup pages
This commit is contained in:
parent
d8f94a68fb
commit
4c248bd88a
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: printempw
|
* @Author: printempw
|
||||||
* @Date: 2016-07-21 13:38:26
|
* @Date: 2016-07-21 13:38:26
|
||||||
* @Last Modified by: printempw
|
* @Last Modified by: printempw
|
||||||
* @Last Modified time: 2017-01-20 22:15:50
|
* @Last Modified time: 2017-01-22 20:45:06
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
@ -135,6 +135,7 @@ gulp.task('zip', () => {
|
||||||
'!.gitignore',
|
'!.gitignore',
|
||||||
'!.git/**/*.*',
|
'!.git/**/*.*',
|
||||||
'!.git/',
|
'!.git/',
|
||||||
|
'!.gitmodules',
|
||||||
'!.gitattributes',
|
'!.gitattributes',
|
||||||
'!artisan',
|
'!artisan',
|
||||||
'!gulpfile.js',
|
'!gulpfile.js',
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,11 @@
|
||||||
|
|
||||||
@yield('content')
|
@yield('content')
|
||||||
|
|
||||||
|
<!-- YOU CAN NOT MODIFIY THE COPYRIGHT TEXT W/O PERMISSION -->
|
||||||
|
<div id="copyright-text" class="hide">
|
||||||
|
{!! bs_copyright() !!}
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- App Scripts -->
|
<!-- App Scripts -->
|
||||||
{!! bs_footer('auth') !!}
|
{!! bs_footer('auth') !!}
|
||||||
|
|
||||||
|
|
|
||||||
30
resources/views/setup/master.tpl
Normal file
30
resources/views/setup/master.tpl
Normal 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>
|
||||||
Loading…
Reference in New Issue
Block a user