110 lines
4.6 KiB
PHP
110 lines
4.6 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', $category->title)
|
|
|
|
@section('content')
|
|
<!-- content -->
|
|
<div class="container mian">
|
|
<!-- content-nav -->
|
|
<nav class="mian-nav">
|
|
@include('category.left',$parent)
|
|
</nav>
|
|
<!-- content-content -->
|
|
<div class="mian-content">
|
|
@include('layouts.navigation',['category'=>$category])
|
|
|
|
<!-- 高级职称专家 -->
|
|
<div class="sub-title">
|
|
<b><i class="fa fa-users"></i>{{ getOneCategory(29,'title') }}</b>
|
|
</div>
|
|
<div class="rcdw-text">
|
|
<!-- 正高 -->
|
|
<div class="rcdw-text-item rcdw-text-item-new">
|
|
<b><i class="fa fa-chevron-circle-right"></i>正高:</b>
|
|
@if (getArticlesBYCate(64,16)->isNotEmpty())
|
|
@foreach (getArticlesBYCate(64,100) as $article)
|
|
<p data-href="{{ $article->link }}"><span>{{ $article->title }}</span></p>
|
|
@endforeach
|
|
@endif
|
|
|
|
</div>
|
|
<!-- 副高 -->
|
|
<div class="rcdw-text-item rcdw-text-item-new">
|
|
<b><i class="fa fa-chevron-circle-right"></i>副高:</b>
|
|
@if (getArticlesBYCate(65,16)->isNotEmpty())
|
|
@foreach (getArticlesBYCate(65,100) as $article)
|
|
<p data-href="{{ $article->link }}"><span>{{ $article->title }}</span></p>
|
|
@endforeach
|
|
@endif
|
|
</div>
|
|
</div>
|
|
<!-- 省级领军人才梯队 -->
|
|
@if(getAllTalent()->isNotEmpty())
|
|
@if(getAllTalent(69)->isNotEmpty())
|
|
<div class="sub-title">
|
|
<b><i class="fa fa-line-chart"></i>{{ getOneCategory(69,'title') }}</b>
|
|
</div>
|
|
@foreach(getAllTalent(69) as $talent)
|
|
<div class="rctd-boeder">
|
|
<div class="rctd2" style="background-image: url({{ $talent->cover_path }});"></div>
|
|
<p class="rctd3-p">
|
|
<span>梯队名称:</span>
|
|
<span>{{ $talent->title }}</span>
|
|
</p>
|
|
<p class="rctd3-p">
|
|
<span>带头人:</span>
|
|
<span>{{ $talent->leader }}</span>
|
|
</p>
|
|
<p class="rctd3-p">
|
|
<span>后备带头人:</span>
|
|
<span>{{ $talent->unleader }}</span>
|
|
</p>
|
|
|
|
<p class="rctd3-p">
|
|
<span>梯队介绍:</span>
|
|
<span>
|
|
{{ $talent->description }}
|
|
</span>
|
|
</p>
|
|
</div>
|
|
@endforeach
|
|
@endif
|
|
|
|
@if(getAllTalent(68)->isNotEmpty())
|
|
|
|
<div class="sub-title">
|
|
<b><i class="fa fa-line-chart"></i>{{ getOneCategory(68,'title') }}</b>
|
|
</div>
|
|
@foreach(getAllTalent(68) as $talent)
|
|
<div class="rctd-boeder">
|
|
<div class="rctd2" style="background-image: url({{ $talent->cover_path }});"></div>
|
|
<p class="rctd3-p">
|
|
<span>学科名称:</span>
|
|
<span>{{ $talent->title }}</span>
|
|
</p>
|
|
<p class="rctd3-p">
|
|
<span>带头人:</span>
|
|
<span>{{ $talent->leader }}</span>
|
|
</p>
|
|
<p class="rctd3-p">
|
|
<span>后备带头人:</span>
|
|
<span>{{ $talent->unleader }}</span>
|
|
</p>
|
|
|
|
<p class="rctd3-p">
|
|
<span>学科介绍:</span>
|
|
<span>
|
|
{{ $talent->description }}
|
|
</span>
|
|
</p>
|
|
</div>
|
|
@endforeach
|
|
@endif
|
|
@endif
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<!-- end content -->
|
|
@endsection
|