更新
This commit is contained in:
@@ -1766,6 +1766,11 @@ body {
|
|||||||
.srSpread-video-cont-title {
|
.srSpread-video-cont-title {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.srSpread-video-cont-title:hover {
|
||||||
|
color: #449942;
|
||||||
}
|
}
|
||||||
|
|
||||||
.srSpread-list li {
|
.srSpread-list li {
|
||||||
@@ -1953,7 +1958,6 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ranksSubject-list {
|
.ranksSubject-list {
|
||||||
padding: 0 0 15px;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-color: #eef4ee;
|
background-color: #eef4ee;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|||||||
@@ -3,6 +3,57 @@
|
|||||||
@section('title', $parent->title)
|
@section('title', $parent->title)
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
<!-- 面包屑导航 -->
|
||||||
|
@include('category.navigation')
|
||||||
|
|
||||||
|
<!-- 内容 -->
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<!-- 左侧导航部分 -->
|
||||||
|
@include('category.left')
|
||||||
|
<!-- 右侧内容部分 -->
|
||||||
|
@if ($articles->isNotEmpty())
|
||||||
|
<div class="col-xs-12 col-md-9">
|
||||||
|
<div class="levelRight">
|
||||||
|
<!-- start 领导班子 -->
|
||||||
|
<div class="row">
|
||||||
|
@foreach ($articles as $info)
|
||||||
|
<div class="col-xs-12 col-md-12" data-href="{{ $info->link }}">
|
||||||
|
<div class="briefList">
|
||||||
|
<div class="ce-img briefList-img">
|
||||||
|
<!-- 图片为4:3 -->
|
||||||
|
<span style="background-image: url({{ $info->cover_url }});"></span>
|
||||||
|
</div>
|
||||||
|
<div class="briefList-text">
|
||||||
|
<div class="briefList-text-name">
|
||||||
|
{{ $info->title }}
|
||||||
|
</div>
|
||||||
|
<div class="ce-nowrap briefList-text-post">
|
||||||
|
{{ $info->remark }}
|
||||||
|
</div>
|
||||||
|
<div class="ce-nowrap-multi briefList-text-introduce">
|
||||||
|
{{ $info->description }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
<div class="pageUl">
|
||||||
|
{{ $articles->links('layouts.pagination') }}
|
||||||
|
</div>
|
||||||
|
<!-- end 领导班子 -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@else
|
||||||
|
<div class="col-xs-12 col-md-9">
|
||||||
|
<div class="no-searchCont">
|
||||||
|
<img src="/assets/index/images/org55.png"/>
|
||||||
|
<span>抱歉,暂无内容</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user