2016-07-21 22:01:57 +08:00
|
|
|
@extends('skinlib.master')
|
|
|
|
|
2016-09-18 13:30:58 +08:00
|
|
|
@section('title', trans('general.skinlib'))
|
2016-07-21 22:01:57 +08:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<!-- Full Width Column -->
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<div class="container">
|
|
|
|
<!-- Content Header (Page header) -->
|
|
|
|
<section class="content-header">
|
|
|
|
<h1>
|
2016-09-18 13:30:58 +08:00
|
|
|
{{ trans('general.skinlib') }}
|
2016-07-21 22:01:57 +08:00
|
|
|
<small>Skin Library</small>
|
|
|
|
</h1>
|
2016-09-30 20:46:15 +08:00
|
|
|
@include('vendor.breadcrumb')
|
2016-07-21 22:01:57 +08:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Main content -->
|
|
|
|
<section class="content">
|
|
|
|
<div class="box box-default">
|
|
|
|
<div class="box-body">
|
|
|
|
@forelse ($textures as $texture)
|
|
|
|
<a href="./skinlib/show?tid={{ $texture['tid'] }}">
|
2016-08-13 22:07:28 +08:00
|
|
|
@include('skinlib.item')
|
2016-07-21 22:01:57 +08:00
|
|
|
</a>
|
|
|
|
@empty
|
2016-09-30 20:46:15 +08:00
|
|
|
<p style="text-align: center; margin: 30px 0;">{{ trans('skinlib.general.no-result') }}</p>
|
2016-07-21 22:01:57 +08:00
|
|
|
@endforelse
|
|
|
|
</div><!-- /.box-body -->
|
|
|
|
|
2016-09-30 20:46:15 +08:00
|
|
|
<div class="box-footer">
|
|
|
|
@include('vendor.pagination')
|
2016-07-21 22:01:57 +08:00
|
|
|
</div>
|
|
|
|
</div><!-- /.box -->
|
|
|
|
</section><!-- /.content -->
|
|
|
|
</div><!-- /.container -->
|
|
|
|
</div><!-- /.content-wrapper -->
|
|
|
|
@endsection
|