mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
Adjust filename of source files
This commit is contained in:
parent
d9abb7c99f
commit
b873ffef9c
@ -106,7 +106,7 @@ class OptionForm
|
|||||||
$hintContent = trans("options.$this->id.hint");
|
$hintContent = trans("options.$this->id.hint");
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->hint = view('vendor.option-form.hint')->with('hint', $hintContent)->render();
|
$this->hint = view('common.option-form.hint')->with('hint', $hintContent)->render();
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
@ -358,7 +358,7 @@ class OptionForm
|
|||||||
|
|
||||||
$this->assignValues();
|
$this->assignValues();
|
||||||
|
|
||||||
return view('vendor.option-form.main')->with(array_merge(get_object_vars($this)))->render();
|
return view('common.option-form.main')->with(array_merge(get_object_vars($this)))->render();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -414,7 +414,7 @@ class OptionFormItem
|
|||||||
$hintContent = trans("options.$this->parentId.$this->id.hint");
|
$hintContent = trans("options.$this->parentId.$this->id.hint");
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->hint = view('vendor.option-form.hint')->with('hint', $hintContent)->render();
|
$this->hint = view('common.option-form.hint')->with('hint', $hintContent)->render();
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
@ -453,7 +453,7 @@ class OptionFormText extends OptionFormItem
|
|||||||
{
|
{
|
||||||
public function render()
|
public function render()
|
||||||
{
|
{
|
||||||
return view('vendor.option-form.text')->with([
|
return view('common.option-form.text')->with([
|
||||||
'id' => $this->id,
|
'id' => $this->id,
|
||||||
'value' => $this->value,
|
'value' => $this->value,
|
||||||
'disabled' => $this->disabled
|
'disabled' => $this->disabled
|
||||||
@ -478,7 +478,7 @@ class OptionFormCheckbox extends OptionFormItem
|
|||||||
|
|
||||||
public function render()
|
public function render()
|
||||||
{
|
{
|
||||||
return view('vendor.option-form.checkbox')->with([
|
return view('common.option-form.checkbox')->with([
|
||||||
'id' => $this->id,
|
'id' => $this->id,
|
||||||
'value' => $this->value,
|
'value' => $this->value,
|
||||||
'label' => $this->label,
|
'label' => $this->label,
|
||||||
@ -500,7 +500,7 @@ class OptionFormTextarea extends OptionFormItem
|
|||||||
|
|
||||||
public function render()
|
public function render()
|
||||||
{
|
{
|
||||||
return view('vendor.option-form.textarea')->with([
|
return view('common.option-form.textarea')->with([
|
||||||
'id' => $this->id,
|
'id' => $this->id,
|
||||||
'rows' => $this->rows,
|
'rows' => $this->rows,
|
||||||
'value' => $this->value,
|
'value' => $this->value,
|
||||||
@ -522,7 +522,7 @@ class OptionFormSelect extends OptionFormItem
|
|||||||
|
|
||||||
public function render()
|
public function render()
|
||||||
{
|
{
|
||||||
return view('vendor.option-form.select')->with([
|
return view('common.option-form.select')->with([
|
||||||
'id' => $this->id,
|
'id' => $this->id,
|
||||||
'options' => $this->options,
|
'options' => $this->options,
|
||||||
'selected' => $this->value,
|
'selected' => $this->value,
|
||||||
@ -562,12 +562,12 @@ class OptionFormGroup extends OptionFormItem
|
|||||||
$item['value'] = option($item['id']);
|
$item['value'] = option($item['id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$rendered[] = view('vendor.option-form.'.$item['type'])->with([
|
$rendered[] = view('common.option-form.'.$item['type'])->with([
|
||||||
'id' => $item['id'],
|
'id' => $item['id'],
|
||||||
'value' => $item['value']
|
'value' => $item['value']
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
return view('vendor.option-form.group')->with('items', $rendered);
|
return view('common.option-form.group')->with('items', $rendered);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -39,7 +39,7 @@ if (! function_exists('assets')) {
|
|||||||
function assets($relativeUri)
|
function assets($relativeUri)
|
||||||
{
|
{
|
||||||
// add query string to fresh cache
|
// add query string to fresh cache
|
||||||
if (Str::startsWith($relativeUri, 'styles') || Str::startsWith($relativeUri, 'scripts')) {
|
if (Str::startsWith($relativeUri, 'css') || Str::startsWith($relativeUri, 'js')) {
|
||||||
return url("resources/assets/dist/$relativeUri")."?v=".config('app.version');
|
return url("resources/assets/dist/$relativeUri")."?v=".config('app.version');
|
||||||
} elseif (Str::startsWith($relativeUri, 'lang')) {
|
} elseif (Str::startsWith($relativeUri, 'lang')) {
|
||||||
return url("resources/$relativeUri");
|
return url("resources/$relativeUri");
|
||||||
@ -92,61 +92,27 @@ if (! function_exists('json')) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! function_exists('bs_footer')) {
|
if (! function_exists('bs_footer_extra')) {
|
||||||
|
|
||||||
function bs_footer($page_identification = "")
|
function bs_footer_extra()
|
||||||
{
|
{
|
||||||
$content = "";
|
|
||||||
|
|
||||||
$scripts = [
|
|
||||||
assets('scripts/app.min.js'),
|
|
||||||
assets('lang/'.config('app.locale').'/locale.js'),
|
|
||||||
];
|
|
||||||
|
|
||||||
if ($page_identification !== "") {
|
|
||||||
$scripts[] = assets("scripts/$page_identification.js");
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($scripts as $script) {
|
|
||||||
$content .= "<script type=\"text/javascript\" src=\"$script\"></script>\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
$content .= '<script>'.option("custom_js").'</script>';
|
|
||||||
|
|
||||||
$extraContents = [];
|
$extraContents = [];
|
||||||
|
|
||||||
Event::fire(new App\Events\RenderingFooter($extraContents));
|
Event::fire(new App\Events\RenderingFooter($extraContents));
|
||||||
|
|
||||||
return $content . implode("\n", $extraContents);
|
return implode("\n", $extraContents);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! function_exists('bs_header')) {
|
if (! function_exists('bs_header_extra')) {
|
||||||
|
|
||||||
function bs_header($page_identification = "")
|
function bs_header_extra()
|
||||||
{
|
{
|
||||||
$content = "";
|
|
||||||
|
|
||||||
$styles = [
|
|
||||||
assets('styles/app.min.css'),
|
|
||||||
assets('styles/skins/'.Option::get('color_scheme').'.min.css')
|
|
||||||
];
|
|
||||||
|
|
||||||
if ($page_identification !== "") {
|
|
||||||
$styles[] = assets("styles/$page_identification.css");
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($styles as $style) {
|
|
||||||
$content .= "<link rel=\"stylesheet\" href=\"$style\">\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
$content .= '<style>'.option("custom_css").'</style>';
|
|
||||||
|
|
||||||
$extraContents = [];
|
$extraContents = [];
|
||||||
|
|
||||||
Event::fire(new App\Events\RenderingHeader($extraContents));
|
Event::fire(new App\Events\RenderingHeader($extraContents));
|
||||||
|
|
||||||
return $content . implode("\n", $extraContents);
|
return implode("\n", $extraContents);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
30
gulpfile.js
30
gulpfile.js
@ -36,7 +36,7 @@ var vendorScripts = [
|
|||||||
'es6-promise/dist/es6-promise.auto.min.js',
|
'es6-promise/dist/es6-promise.auto.min.js',
|
||||||
'sweetalert2/dist/sweetalert2.min.js',
|
'sweetalert2/dist/sweetalert2.min.js',
|
||||||
'jqPaginator/dist/1.2.0/jqPaginator.min.js',
|
'jqPaginator/dist/1.2.0/jqPaginator.min.js',
|
||||||
'resources/assets/dist/scripts/general.js',
|
'resources/assets/dist/js/general.js',
|
||||||
];
|
];
|
||||||
|
|
||||||
var vendorStyles = [
|
var vendorStyles = [
|
||||||
@ -83,38 +83,36 @@ elixir((mix) => {
|
|||||||
.task('compile-es6')
|
.task('compile-es6')
|
||||||
.task('compile-sass')
|
.task('compile-sass')
|
||||||
|
|
||||||
.scripts(convertNpmRelativePath(vendorScripts), distPath + 'scripts/app.min.js', './')
|
.scripts(convertNpmRelativePath(vendorScripts), distPath + 'js/app.js', './')
|
||||||
.styles(convertNpmRelativePath(vendorStyles), distPath + 'styles/app.min.css', './')
|
.styles(convertNpmRelativePath(vendorStyles), distPath + 'css/style.css', './')
|
||||||
.replace(distPath + 'styles/app.min.css', styleReplacements)
|
.replace(distPath + 'css/style.css', styleReplacements)
|
||||||
.replace(distPath + 'scripts/app.min.js', scriptReplacements)
|
.replace(distPath + 'js/app.js', scriptReplacements)
|
||||||
|
|
||||||
// copy fonts & images
|
// copy fonts & images
|
||||||
.copy(convertNpmRelativePath(fonts), distPath + 'fonts/')
|
.copy(convertNpmRelativePath(fonts), distPath + 'fonts/')
|
||||||
.copy(convertNpmRelativePath(images), distPath + 'images/')
|
.copy(convertNpmRelativePath(images), distPath + 'images/')
|
||||||
.copy(convertNpmRelativePath(['admin-lte/dist/css/skins']), distPath + 'styles/skins')
|
.copy(convertNpmRelativePath(['admin-lte/dist/css/skins']), distPath + 'css/skins')
|
||||||
.copy(
|
.copy(
|
||||||
['skin-preview/**', 'Chart.min.js'].map(relativePath => `${srcPath}vendor/${relativePath}`),
|
['skin-preview/**', 'Chart.min.js'].map(relativePath => `${srcPath}vendor/${relativePath}`),
|
||||||
distPath + 'scripts/'
|
distPath + 'js/'
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
// compile sass
|
// compile sass
|
||||||
gulp.task('compile-sass', () => {
|
gulp.task('compile-sass', () => {
|
||||||
gulp.src(srcPath + 'styles/*.scss')
|
gulp.src(srcPath + 'sass/*.scss')
|
||||||
.pipe(sass().on('error', sass.logError))
|
.pipe(sass().on('error', sass.logError))
|
||||||
.pipe(cleanCss())
|
.pipe(cleanCss())
|
||||||
.pipe(gulp.dest(distPath + 'styles'));
|
.pipe(gulp.dest(distPath + 'css'));
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('compile-es6', () => {
|
gulp.task('compile-es6', () => {
|
||||||
gulp.src(srcPath + 'scripts/*.js')
|
gulp.src(srcPath + 'js/*.js')
|
||||||
.pipe(babel({ presets: ['es2015'] }))
|
.pipe(babel({ presets: ['es2015'] }))
|
||||||
.pipe(uglify())
|
.pipe(uglify())
|
||||||
.pipe(gulp.dest(distPath + 'scripts'));
|
.pipe(gulp.dest(distPath + 'js'));
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task
|
|
||||||
|
|
||||||
// delete cache files
|
// delete cache files
|
||||||
gulp.task('clear', () => {
|
gulp.task('clear', () => {
|
||||||
clearCache();
|
clearCache();
|
||||||
@ -168,10 +166,10 @@ gulp.task('zip', () => {
|
|||||||
|
|
||||||
gulp.task('watch', () => {
|
gulp.task('watch', () => {
|
||||||
// watch .scss files
|
// watch .scss files
|
||||||
gulp.watch(srcPath + 'styles/*.scss', ['compile-sass'], () => notify({ message: 'Sass files compiled!' }));
|
gulp.watch(srcPath + 'sass/*.scss', ['compile-sass'], () => notify({ message: 'Sass files compiled!' }));
|
||||||
// watch .js files
|
// watch .js files
|
||||||
gulp.watch(srcPath + 'scripts/*.js', ['compile-es6'], () => notify({ message: 'ES6 scripts compiled!' }));
|
gulp.watch(srcPath + 'js/*.js', ['compile-es6'], () => notify({ message: 'ES6 scripts compiled!' }));
|
||||||
gulp.watch(srcPath + 'scripts/general.js', ['scripts']);
|
gulp.watch(srcPath + 'js/general.js', ['scripts']);
|
||||||
});
|
});
|
||||||
|
|
||||||
function convertNpmRelativePath(paths) {
|
function convertNpmRelativePath(paths) {
|
||||||
|
@ -19,7 +19,7 @@ $(document).ready(function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$.extend(true, $.fn.dataTable.defaults, {
|
$.extend(true, $.fn.dataTable.defaults, {
|
||||||
language: trans('vendor.datatables'),
|
language: trans('common.datatables'),
|
||||||
scrollX: true,
|
scrollX: true,
|
||||||
pageLength: 25,
|
pageLength: 25,
|
||||||
autoWidth: false,
|
autoWidth: false,
|
@ -3,7 +3,7 @@
|
|||||||
@section('title', trans('general.customize'))
|
@section('title', trans('general.customize'))
|
||||||
|
|
||||||
@section('style')
|
@section('style')
|
||||||
<link rel="stylesheet" href="{{ assets('styles/skins/_all-skins.min.css') }}">
|
<link rel="stylesheet" href="{{ assets('css/skins/_all-skins.min.css') }}">
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
@ -63,5 +63,3 @@ var current_skin = "{{ option('color_scheme') }}";
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@
|
|||||||
</section><!-- /.content -->
|
</section><!-- /.content -->
|
||||||
</div><!-- /.content-wrapper -->
|
</div><!-- /.content-wrapper -->
|
||||||
|
|
||||||
<script type="text/javascript" src="{{ assets('scripts/Chart.min.js') }}"></script>
|
<script type="text/javascript" src="{{ assets('js/Chart.min.js') }}"></script>
|
||||||
|
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<!-- Tell the browser to be responsive to screen width -->
|
<!-- Tell the browser to be responsive to screen width -->
|
||||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||||
<!-- App Styles -->
|
<!-- App Styles -->
|
||||||
{!! bs_header('admin') !!}
|
@include('common.dependencies.style', ['module' => 'admin'])
|
||||||
|
|
||||||
@yield('style')
|
@yield('style')
|
||||||
</head>
|
</head>
|
||||||
@ -38,9 +38,9 @@
|
|||||||
<!-- Navbar Right Menu -->
|
<!-- Navbar Right Menu -->
|
||||||
<div class="navbar-custom-menu">
|
<div class="navbar-custom-menu">
|
||||||
<ul class="nav navbar-nav">
|
<ul class="nav navbar-nav">
|
||||||
@include('vendor.language')
|
@include('common.language')
|
||||||
|
|
||||||
@include('vendor.user-menu')
|
@include('common.user-menu')
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
@ -89,7 +89,7 @@
|
|||||||
</div><!-- ./wrapper -->
|
</div><!-- ./wrapper -->
|
||||||
|
|
||||||
<!-- App Scripts -->
|
<!-- App Scripts -->
|
||||||
{!! bs_footer('admin') !!}
|
@include('common.dependencies.script', ['module' => 'admin'])
|
||||||
|
|
||||||
@if (option('check_update'))
|
@if (option('check_update'))
|
||||||
<script>
|
<script>
|
||||||
|
@ -40,8 +40,11 @@
|
|||||||
|
|
||||||
@section('script')
|
@section('script')
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(document).ready(function() {
|
$(document).ready(function () {
|
||||||
$('.box-body').css('min-height', $('.content-wrapper').height() - $('.content-header').outerHeight() - 120);
|
$('.box-body').css(
|
||||||
});
|
'min-height',
|
||||||
|
$('.content-wrapper').height() - $('.content-header').outerHeight() - 120
|
||||||
|
);
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
@endsection
|
@endsection
|
||||||
|
@ -40,8 +40,11 @@
|
|||||||
|
|
||||||
@section('script')
|
@section('script')
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('.box-body').css('min-height', $('.content-wrapper').height() - $('.content-header').outerHeight() - 120);
|
$('.box-body').css(
|
||||||
});
|
'min-height',
|
||||||
|
$('.content-wrapper').height() - $('.content-header').outerHeight() - 120
|
||||||
|
);
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
@endsection
|
@endsection
|
||||||
|
@ -7,8 +7,9 @@
|
|||||||
{!! bs_favicon() !!}
|
{!! bs_favicon() !!}
|
||||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||||
<!-- App Styles -->
|
<!-- App Styles -->
|
||||||
{!! bs_header('auth') !!}
|
@include('common.dependencies.style', ['module' => 'auth'])
|
||||||
<script>blessing.redirect_to = '<?php echo session('last_requested_path') ?>';</script>
|
|
||||||
|
<script>blessing.redirect_to = "{{ session('last_requested_path') }}";</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="hold-transition login-page">
|
<body class="hold-transition login-page">
|
||||||
@ -21,7 +22,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- App Scripts -->
|
<!-- App Scripts -->
|
||||||
{!! bs_footer('auth') !!}
|
@include('common.dependencies.script', ['module' => 'auth'])
|
||||||
|
|
||||||
@yield('script')
|
@yield('script')
|
||||||
</body>
|
</body>
|
||||||
|
11
resources/views/common/dependencies/script.tpl
Normal file
11
resources/views/common/dependencies/script.tpl
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<script type="text/javascript" src="{{ assets('js/app.js') }}"></script>
|
||||||
|
<script type="text/javascript" src="{{ assets('lang/'.config('app.locale').'/locale.js') }}"></script>
|
||||||
|
|
||||||
|
@if (isset($module))
|
||||||
|
<script type="text/javascript" src="{{ assets('js/'.$module.'.js') }}"></script>
|
||||||
|
@endif
|
||||||
|
|
||||||
|
<!-- User custom scripts -->
|
||||||
|
<script type="text/javascript">{!! option('custom_js') !!}</script>
|
||||||
|
{{-- Content added by plugins dynamically --}}
|
||||||
|
{!! bs_footer_extra() !!}
|
13
resources/views/common/dependencies/style.tpl
Normal file
13
resources/views/common/dependencies/style.tpl
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<!-- Bundled styles -->
|
||||||
|
<link rel="stylesheet" href="{{ assets('css/style.css') }}">
|
||||||
|
<!-- AdminLTE color scheme -->
|
||||||
|
<link rel="stylesheet" href="{{ assets('css/skins/'.option('color_scheme').'.min.css') }}">
|
||||||
|
|
||||||
|
@if (isset($module))
|
||||||
|
<link rel="stylesheet" href="{{ assets('css/'.$module.'.css') }}">
|
||||||
|
@endif
|
||||||
|
|
||||||
|
<!-- User custom styles -->
|
||||||
|
<style>{!! option('custom_css') !!}</style>
|
||||||
|
{{-- Content added by plugins dynamically --}}
|
||||||
|
{!! bs_header_extra() !!}
|
@ -11,7 +11,7 @@
|
|||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
@if ($renderWithOutTable)
|
@if ($renderWithOutTable)
|
||||||
@each('vendor.option-form.item', $items, 'item')
|
@each('common.option-form.item', $items, 'item')
|
||||||
@else
|
@else
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -22,7 +22,7 @@
|
|||||||
@endunless
|
@endunless
|
||||||
|
|
||||||
<td class="value">
|
<td class="value">
|
||||||
@include('vendor.option-form.item', compact('item'))
|
@include('common.option-form.item', compact('item'))
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
@ -14,8 +14,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</div><!-- /.box-body -->
|
</div><!-- /.box-body -->
|
||||||
|
|
||||||
<script type="text/javascript" src="{{ assets('scripts/three.min.js') }}"></script>
|
<script type="text/javascript" src="{{ assets('js/three.min.js') }}"></script>
|
||||||
<script type="text/javascript" src="{{ assets('scripts/three.msp.js') }}"></script>
|
<script type="text/javascript" src="{{ assets('js/three.msp.js') }}"></script>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// Default Steve Skin: https://minecraft.net/images/steve.png
|
// Default Steve Skin: https://minecraft.net/images/steve.png
|
@ -5,7 +5,7 @@
|
|||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<meta name="robots" content="noindex,nofollow" />
|
<meta name="robots" content="noindex,nofollow" />
|
||||||
<title>@yield('title') - Blessing Skin Server</title>
|
<title>@yield('title') - Blessing Skin Server</title>
|
||||||
<link rel="stylesheet" type="text/css" href="{{ assets('styles/install.css') }}">
|
<link rel="stylesheet" type="text/css" href="{{ assets('css/install.css') }}">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="container">
|
<body class="container">
|
||||||
|
@ -8,10 +8,10 @@
|
|||||||
<!-- Tell the browser to be responsive to screen width -->
|
<!-- Tell the browser to be responsive to screen width -->
|
||||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||||
<!-- App Styles -->
|
<!-- App Styles -->
|
||||||
{!! bs_header('index') !!}
|
@include('common.dependencies.style', ['module' => 'index'])
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var changeWrapperHeight = function() {
|
var changeWrapperHeight = function () {
|
||||||
document.getElementsByClassName('wrapper')[0].style.height = window.innerHeight + 'px';
|
document.getElementsByClassName('wrapper')[0].style.height = window.innerHeight + 'px';
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
@ -42,10 +42,10 @@
|
|||||||
<!-- Navbar Right Menu -->
|
<!-- Navbar Right Menu -->
|
||||||
<div class="navbar-custom-menu">
|
<div class="navbar-custom-menu">
|
||||||
<ul class="nav navbar-nav">
|
<ul class="nav navbar-nav">
|
||||||
@include('vendor.language')
|
@include('common.language')
|
||||||
|
|
||||||
@if (!is_null($user))
|
@if (!is_null($user))
|
||||||
@include('vendor.user-menu')
|
@include('common.user-menu')
|
||||||
@else {{-- Anonymous User --}}
|
@else {{-- Anonymous User --}}
|
||||||
<!-- User Account Menu -->
|
<!-- User Account Menu -->
|
||||||
<li class="dropdown user user-menu">
|
<li class="dropdown user user-menu">
|
||||||
@ -131,7 +131,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- App Scripts -->
|
<!-- App Scripts -->
|
||||||
{!! bs_footer() !!}
|
@include('common.dependencies.script', ['module' => 'index'])
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(window).scroll(function(event) {
|
$(window).scroll(function(event) {
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<meta name="robots" content="noindex,nofollow" />
|
<meta name="robots" content="noindex,nofollow" />
|
||||||
<title>{{ trans('setup.wizard.master.title') }}</title>
|
<title>{{ trans('setup.wizard.master.title') }}</title>
|
||||||
<link rel="shortcut icon" href="{{ assets('dist/images/favicon.ico') }}">
|
<link rel="shortcut icon" href="{{ assets('dist/images/favicon.ico') }}">
|
||||||
<link rel="stylesheet" type="text/css" href="{{ assets('dist/styles/install.css') }}">
|
<link rel="stylesheet" type="text/css" href="{{ assets('dist/css/install.css') }}">
|
||||||
@yield('style')
|
@yield('style')
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<!-- Tell the browser to be responsive to screen width -->
|
<!-- Tell the browser to be responsive to screen width -->
|
||||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||||
<!-- App Styles -->
|
<!-- App Styles -->
|
||||||
{!! bs_header('skinlib') !!}
|
@include('common.dependencies.style', ['module' => 'skinlib'])
|
||||||
|
|
||||||
@yield('style')
|
@yield('style')
|
||||||
</head>
|
</head>
|
||||||
@ -78,7 +78,7 @@
|
|||||||
</li>
|
</li>
|
||||||
@endunless
|
@endunless
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
@unless (isset($with_out_filter))
|
@unless (isset($with_out_filter))
|
||||||
<form class="navbar-form navbar-left" id="search-form" role="search">
|
<form class="navbar-form navbar-left" id="search-form" role="search">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
@ -92,10 +92,10 @@
|
|||||||
<ul class="nav navbar-nav">
|
<ul class="nav navbar-nav">
|
||||||
<li><a href="{{ url('skinlib/upload') }}"><i class="fa fa-upload" aria-hidden="true"></i> <span class="description-text">{{ trans('skinlib.general.upload-new-skin') }}</span></a></li>
|
<li><a href="{{ url('skinlib/upload') }}"><i class="fa fa-upload" aria-hidden="true"></i> <span class="description-text">{{ trans('skinlib.general.upload-new-skin') }}</span></a></li>
|
||||||
|
|
||||||
@include('vendor.language')
|
@include('common.language')
|
||||||
|
|
||||||
@if (!is_null($user))
|
@if (!is_null($user))
|
||||||
@include('vendor.user-menu')
|
@include('common.user-menu')
|
||||||
@else {{-- Anonymous User --}}
|
@else {{-- Anonymous User --}}
|
||||||
<!-- User Account Menu -->
|
<!-- User Account Menu -->
|
||||||
<li class="dropdown user user-menu">
|
<li class="dropdown user user-menu">
|
||||||
@ -130,7 +130,7 @@
|
|||||||
</div><!-- ./wrapper -->
|
</div><!-- ./wrapper -->
|
||||||
|
|
||||||
<!-- App Scripts -->
|
<!-- App Scripts -->
|
||||||
{!! bs_footer('skinlib') !!}
|
@include('common.dependencies.script', ['module' => 'skinlib'])
|
||||||
|
|
||||||
@yield('script')
|
@yield('script')
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<div class="box box-primary">
|
<div class="box box-primary">
|
||||||
@include('vendor.texture-preview')
|
@include('common.texture-preview')
|
||||||
|
|
||||||
<div class="box-footer">
|
<div class="box-footer">
|
||||||
@if (is_null($user)) {{-- Not logged in --}}
|
@if (is_null($user)) {{-- Not logged in --}}
|
||||||
@ -97,13 +97,13 @@
|
|||||||
|
|
||||||
@if (!is_null($user))
|
@if (!is_null($user))
|
||||||
@if ($texture->uploader == $user->uid)
|
@if ($texture->uploader == $user->uid)
|
||||||
@include('vendor.manage-panel', [
|
@include('common.manage-panel', [
|
||||||
'title' => trans('skinlib.show.delete-texture')." / ".trans('skinlib.privacy.change-privacy'),
|
'title' => trans('skinlib.show.delete-texture')." / ".trans('skinlib.privacy.change-privacy'),
|
||||||
'message' => trans('skinlib.show.notice')
|
'message' => trans('skinlib.show.notice')
|
||||||
])
|
])
|
||||||
|
|
||||||
@elseif ($user->isAdmin())
|
@elseif ($user->isAdmin())
|
||||||
@include('vendor.manage-panel', [
|
@include('common.manage-panel', [
|
||||||
'title' => trans('skinlib.show.manage-panel'),
|
'title' => trans('skinlib.show.manage-panel'),
|
||||||
'message' => trans('skinlib.show.notice-admin')
|
'message' => trans('skinlib.show.notice-admin')
|
||||||
])
|
])
|
||||||
|
@ -81,7 +81,7 @@ label[for="type-cape"] {
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<div class="box box-default">
|
<div class="box box-default">
|
||||||
@include('vendor.texture-preview')
|
@include('common.texture-preview')
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
|
|
||||||
<div class="box box-default">
|
<div class="box box-default">
|
||||||
@include('vendor.texture-preview')
|
@include('common.texture-preview')
|
||||||
|
|
||||||
<div class="box-footer">
|
<div class="box-footer">
|
||||||
<button class="btn btn-primary" data-toggle="modal" data-target="#modal-use-as">{{ trans('user.closet.use-as.button') }}</button>
|
<button class="btn btn-primary" data-toggle="modal" data-target="#modal-use-as">{{ trans('user.closet.use-as.button') }}</button>
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<!-- Tell the browser to be responsive to screen width -->
|
<!-- Tell the browser to be responsive to screen width -->
|
||||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||||
<!-- App Styles -->
|
<!-- App Styles -->
|
||||||
{!! bs_header('user') !!}
|
@include('common.dependencies.style', ['module' => 'user'])
|
||||||
|
|
||||||
@yield('style')
|
@yield('style')
|
||||||
</head>
|
</head>
|
||||||
@ -36,9 +36,9 @@
|
|||||||
<!-- Navbar Right Menu -->
|
<!-- Navbar Right Menu -->
|
||||||
<div class="navbar-custom-menu">
|
<div class="navbar-custom-menu">
|
||||||
<ul class="nav navbar-nav">
|
<ul class="nav navbar-nav">
|
||||||
@include('vendor.language')
|
@include('common.language')
|
||||||
|
|
||||||
@include('vendor.user-menu')
|
@include('common.user-menu')
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
@ -92,7 +92,7 @@
|
|||||||
</div><!-- ./wrapper -->
|
</div><!-- ./wrapper -->
|
||||||
|
|
||||||
<!-- App Scripts -->
|
<!-- App Scripts -->
|
||||||
{!! bs_footer('user') !!}
|
@include('common.dependencies.script', ['module' => 'user'])
|
||||||
|
|
||||||
@yield('script')
|
@yield('script')
|
||||||
</body>
|
</body>
|
||||||
|
@ -139,8 +139,8 @@
|
|||||||
</div><!-- /.modal-dialog -->
|
</div><!-- /.modal-dialog -->
|
||||||
</div><!-- /.modal -->
|
</div><!-- /.modal -->
|
||||||
|
|
||||||
<script type="text/javascript" src="{{ assets('scripts/three.min.js') }}"></script>
|
<script type="text/javascript" src="{{ assets('js/three.min.js') }}"></script>
|
||||||
<script type="text/javascript" src="{{ assets('scripts/three.msp.js') }}"></script>
|
<script type="text/javascript" src="{{ assets('js/three.msp.js') }}"></script>
|
||||||
|
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user