blessing-skin-server/resources/views/skinlib/search.tpl
2016-08-13 22:07:28 +08:00

58 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('skinlib.master')
@section('title', '搜索结果')
@section('content')
<!-- Full Width Column -->
<div class="content-wrapper">
<div class="container">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
搜索结果:{{ $_GET['q'] or "未指定关键字" }}
<small>Skin Library</small>
</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="box box-default">
<div class="box-header with-border">
<h3 class="box-title">当前正显示:
<small>过滤器:
@if ($filter == "skin")
皮肤(任意模型)
@elseif ($filter == "steve")
皮肤Steve 模型)
@elseif ($filter == "alex")
皮肤Alex 模型)
@elseif ($filter == "cape")
披风
@endif
</small>
<small>,排序:
@if ($sort == "time")
最新上传
@elseif ($sort == "likes")
最多收藏
@endif
</small>
</h3>
</div><!-- /.box-header -->
<div class="box-body">
@forelse ($textures as $texture)
<a href="../skinlib/show?tid={{ $texture['tid'] }}">
@include('skinlib.item')
</a>
@empty
<p style="text-align: center; margin: 30px 0;">无结果</p>
@endforelse
</div><!-- /.box-body -->
</div><!-- /.box -->
</section><!-- /.content -->
</div><!-- /.container -->
</div><!-- /.content-wrapper -->
@endsection