测试
This commit is contained in:
@@ -121,7 +121,7 @@ img {
|
||||
}
|
||||
|
||||
.header-text {
|
||||
padding-left: 100px;
|
||||
padding-left: 95px;
|
||||
}
|
||||
|
||||
.header-text p {
|
||||
@@ -1267,7 +1267,7 @@ img {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.org-inst-ul li a:hover{
|
||||
.org-inst-ul li a:hover {
|
||||
color: #273981;
|
||||
}
|
||||
|
||||
@@ -1459,7 +1459,7 @@ img {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.rcdw-xxh p{
|
||||
.rcdw-xxh p {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
@@ -1588,14 +1588,14 @@ img {
|
||||
}
|
||||
|
||||
/* 漂浮的工具栏 */
|
||||
.laytool{
|
||||
.laytool {
|
||||
position: fixed;
|
||||
top: 45vh;
|
||||
left: calc(50% + 615px);
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.laytool-ul li{
|
||||
.laytool-ul li {
|
||||
position: relative;
|
||||
margin-bottom: 5px;
|
||||
width: 40px;
|
||||
@@ -1607,7 +1607,7 @@ img {
|
||||
transition: background .3s;
|
||||
}
|
||||
|
||||
.wechat-code{
|
||||
.wechat-code {
|
||||
position: absolute;
|
||||
left: -305px;
|
||||
top: -205px;
|
||||
@@ -1616,19 +1616,19 @@ img {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.wechat-code img{
|
||||
.wechat-code img {
|
||||
width: 100%;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.laytool-ul i{
|
||||
.laytool-ul i {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.laytool-ul li:hover{
|
||||
.laytool-ul li:hover {
|
||||
background: #273981;
|
||||
}
|
||||
|
||||
.laytool-ul li:hover .wechat-code{
|
||||
.laytool-ul li:hover .wechat-code {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@@ -1,109 +1,130 @@
|
||||
@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">
|
||||
<div class="mian-content-header">
|
||||
<a href="#">首页</a>
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $category->link }}">{{ $category->title }}</a>
|
||||
</div>
|
||||
<!-- 工作动态 -->
|
||||
<div class="sub-title">
|
||||
<b><i class="fa fa-th-large"></i>{{ getOneCategory(32,'title') }}</b>
|
||||
<a href="{{ getOneCategory(32,'link') }}">更多</a>
|
||||
</div>
|
||||
<div class="results-news">
|
||||
@if(getArticlesBYCate(32,8)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(32,8) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="results-news-cover" style="background-image: url({{ $article->cover_path }});" href="{{ $article->link }}">
|
||||
<span>{{ $article->title }}</span>
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="results-news-ul">
|
||||
@foreach (getArticlesBYCate(32,8) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li>
|
||||
<a class="nowrap" href="{{ $article->link }}">
|
||||
<i class="fa fa-angle-double-right"></i>
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
<!-- 党风廉政 -->
|
||||
<div class="sub-title">
|
||||
<b><i class="fa fa-th-large"></i>{{ getOneCategory(33,'title') }}</b>
|
||||
<a href="{{ getOneCategory(33,'link') }}">更多</a>
|
||||
</div>
|
||||
<div class="results-news">
|
||||
@if(getArticlesBYCate(33,8)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(33,8) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="results-news-cover" style="background-image: url({{ $article->cover_path }});" href="{{ $article->link }}">
|
||||
<span>{{ $article->title }}</span>
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="results-news-ul">
|
||||
@foreach (getArticlesBYCate(33,8) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li>
|
||||
<a class="nowrap" href="{{ $article->link }}">
|
||||
<i class="fa fa-angle-double-right"></i>
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
<!-- 精神文明 -->
|
||||
<div class="sub-title">
|
||||
<b><i class="fa fa-th-large"></i>{{ getOneCategory(34,'title') }}</b>
|
||||
<a href="{{ getOneCategory(34,'link') }}">更多</a>
|
||||
</div>
|
||||
<div class="results-news">
|
||||
@if(getArticlesBYCate(34,8)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(34,8) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="results-news-cover" style="background-image: url({{ $article->cover_path }});" href="{{ $article->link }}">
|
||||
<span>{{ $article->title }}</span>
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="results-news-ul">
|
||||
@foreach (getArticlesBYCate(34,8) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li>
|
||||
<a class="nowrap" href="{{ $article->link }}">
|
||||
<i class="fa fa-angle-double-right"></i>
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end content -->
|
||||
@endsection
|
||||
@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">
|
||||
<div class="mian-content-header">
|
||||
<a href="#">首页</a>
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $category->link }}">{{ $category->title }}</a>
|
||||
</div>
|
||||
<!-- 工作动态 -->
|
||||
<div class="sub-title">
|
||||
<b><i class="fa fa-th-large"></i>{{ getOneCategory(32,'title') }}</b>
|
||||
<a href="{{ getOneCategory(32,'link') }}">更多</a>
|
||||
</div>
|
||||
<div class="results-news">
|
||||
@if(getArticlesBYCate(32,8)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(32,8) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="results-news-cover" style="background-image: url({{ $article->cover_path }});" href="{{ $article->link }}">
|
||||
<span>{{ $article->title }}</span>
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="results-news-ul">
|
||||
@foreach (getArticlesBYCate(32,8) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li>
|
||||
<a class="nowrap" href="{{ $article->link }}">
|
||||
<i class="fa fa-angle-double-right"></i>
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
<!-- 党风廉政 -->
|
||||
<div class="sub-title">
|
||||
<b><i class="fa fa-th-large"></i>{{ getOneCategory(33,'title') }}</b>
|
||||
<a href="{{ getOneCategory(33,'link') }}">更多</a>
|
||||
</div>
|
||||
<div class="results-news">
|
||||
@if(getArticlesBYCate(33,8)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(33,8) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="results-news-cover" style="background-image: url({{ $article->cover_path }});" href="{{ $article->link }}">
|
||||
<span>{{ $article->title }}</span>
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="results-news-ul">
|
||||
@foreach (getArticlesBYCate(33,8) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li>
|
||||
<a class="nowrap" href="{{ $article->link }}">
|
||||
<i class="fa fa-angle-double-right"></i>
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
<!-- 先进事迹 -->
|
||||
<div class="sub-title">
|
||||
<b><i class="fa fa-th-large"></i>{{ getOneCategory(34,'title') }}</b>
|
||||
<a href="{{ getOneCategory(34,'link') }}">更多</a>
|
||||
</div>
|
||||
<div class="results-news">
|
||||
@if(getArticlesBYCate(34,8)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(34,8) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="results-news-cover" style="background-image: url({{ $article->cover_path }});" href="{{ $article->link }}">
|
||||
<span>{{ $article->title }}</span>
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="results-news-ul">
|
||||
@foreach (getArticlesBYCate(34,8) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li>
|
||||
<a class="nowrap" href="{{ $article->link }}">
|
||||
<i class="fa fa-angle-double-right"></i>
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<!-- 意识形态 -->
|
||||
<div class="sub-title">
|
||||
<b><i class="fa fa-th-large"></i>{{ getOneCategory(59,'title') }}</b>
|
||||
<a href="{{ getOneCategory(59,'link') }}">更多</a>
|
||||
</div>
|
||||
<div class="results-news">
|
||||
@if(getArticlesBYCate(59,8)->isNotEmpty())
|
||||
<ul class="results-news-ul">
|
||||
@foreach (getArticlesBYCate(59,8) as $article)
|
||||
<li>
|
||||
<a class="nowrap" href="{{ $article->link }}">
|
||||
<i class="fa fa-angle-double-right"></i>
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end content -->
|
||||
@endsection
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
<div class="container header-content">
|
||||
<img class="header-logo" src="{{ asset('assets/index/img/logo.png') }}" alt="黑龙江省科学院智能制造研究所">
|
||||
<div class="header-text">
|
||||
<p>面向世界科技前沿,面向国家重大需求,面向国民经济主战场,率先实现科学技术跨越发展,率先建成国家创新人才高地,率先建成国家高水平科技智库,率先建设国际一流科研机构。</p>
|
||||
<p>面向世界科技前沿,面向国家重大需求,面向国民经济主战场,面向人民生命健康,率先实现科学技术跨越发展,率先建成国家创新人才高地,率先建成国家高水平科技智库,率先建设国际一流科研机构。</p>
|
||||
<p class="header-text-sign">——智能制造所办所方针</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -43,8 +43,14 @@
|
||||
<!-- end header -->
|
||||
|
||||
<!-- Laytool -->
|
||||
<div class="laytool">
|
||||
漂浮
|
||||
<div class="laytool" style="display: none">
|
||||
<ul class="laytool-ul">
|
||||
<li>
|
||||
<div class="wechat-code" class="wechat-code">
|
||||
<img class="i" src="{{ asset('assets/index/img/z19_ewm3.jpg') }}">
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- end Laytool -->
|
||||
|
||||
|
||||
@@ -1,340 +1,338 @@
|
||||
<!-- nav -->
|
||||
<nav class="nav">
|
||||
<div class="container nav-content">
|
||||
<ul class="nav-ul" id="nav">
|
||||
<li class="nav-ul-li @if (!isset($parent)) show @endif">
|
||||
<a href="/">首页</a>
|
||||
</li>
|
||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.zzjg')) show @endif">
|
||||
<a href=" {{ getOneCategory(config('haai.category.zzjg'),'link') }} ">{{ getOneCategory(config('haai.category.zzjg'),'title') }}</a>
|
||||
<div class="nav-layer hide">
|
||||
<div class="nav-layer-item nav-org-left">
|
||||
<!-- 研究所简介 -->
|
||||
<div class="nav-org-int">
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(2,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-org-mian">
|
||||
<div class="nav-org-cover">
|
||||
<span style="background-image: url({{ getOneArticleBYCate(2)->cover_path }});"></span>
|
||||
</div>
|
||||
<p>
|
||||
{{ getOneArticleBYCate(2)->description }}
|
||||
</p>
|
||||
<p class="nav-org-more"><a href="{{ getOneArticleBYCate(2,'link') }}">查看更多</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 领导班子 -->
|
||||
<div class="nav-org-leadership">
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(3,'title') }}</span>
|
||||
</div>
|
||||
<ul class="nav-org-people">
|
||||
@if (getArticlesBYCate(3,3)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(3,3) as $article)
|
||||
<li>
|
||||
<a href="{{ $article->link }}">
|
||||
<img src="{{ $article->cover_path }}">
|
||||
<p class="nowrap">{{ $article->title }}</p>
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="nav-layer-item nav-org-right">
|
||||
<!-- 机构设置 -->
|
||||
<div class="nav-layer-title ">
|
||||
<span>{{ getOneCategory(4,'title') }}</span>
|
||||
</div>
|
||||
<ul class="nav-org-flex">
|
||||
<li><a href="{{ getOneCategory(5,'link') }}">{{ getOneCategory(5,'title') }}</a></li>
|
||||
<li><a href="{{ getOneCategory(6,'link') }}">{{ getOneCategory(6,'title') }}</a></li>
|
||||
<li><a href="{{ getOneCategory(7,'link') }}">{{ getOneCategory(7,'title') }}</a></li>
|
||||
<li><a href="{{ getOneCategory(8,'link') }}">{{ getOneCategory(8,'title') }}</a></li>
|
||||
<li><a href="{{ getOneCategory(9,'link') }}">{{ getOneCategory(9,'title') }}</a></li>
|
||||
</ul>
|
||||
<div class="nav-layer-title"></div>
|
||||
<ul class="nav-org-flex">
|
||||
<li style="width: 100%;">
|
||||
<a href="{{ getOneCategory(39,'link') }}">{{ getOneCategory(39,'title') }}</a></li>
|
||||
<li>
|
||||
<a href="{{ getOneCategory(37,'link') }}">{{ getOneCategory(37,'title') }}</a>
|
||||
@if (getCateChild(37)->isNotEmpty())
|
||||
@foreach (getCateChild(37) as $child)
|
||||
<p><a href="{{ $child->link }}">{{ $child->title }}</a></p>
|
||||
@endforeach
|
||||
@endif
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{ getOneCategory(38,'link') }}">{{ getOneCategory(38,'title') }}</a>
|
||||
@if (getCateChild(38)->isNotEmpty())
|
||||
@foreach (getCateChild(38) as $child)
|
||||
<p><a href="{{ $child->link }}">{{ $child->title }}</a></p>
|
||||
@endforeach
|
||||
@endif
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.kxyj')) show @endif">
|
||||
<a href="{{ getOneCategory(config('haai.category.kxyj'),'link') }}">{{ getOneCategory(config('haai.category.kxyj'),'title') }}</a>
|
||||
<div class="nav-layer hide">
|
||||
<div class="nav-layer-item nav-science-left">
|
||||
<!-- 创新单元 -->
|
||||
{{-- <div class="nav-layer-title">--}}
|
||||
{{-- <span>{{ getOneCategory(11,'title') }}</span>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- <div class="nav-science-block">--}}
|
||||
{{-- <a class="nav-science-cover" href="#" style="background-image: url(/assets/index/img/banner_00.jpeg);"></a>--}}
|
||||
{{-- <ul class="nav-science-ul">--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">熔融沉积式工业3D打印机</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">3D测量与打印技术研发与应用</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">智能花光伏发电装置</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">基于物联网技术的城市再生资源回收信息化技术</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- </ul>--}}
|
||||
{{-- </div>--}}
|
||||
<!-- 科技奖励 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(13,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-science-block">
|
||||
@if(getArticlesBYCate(13,6)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(13,6) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="nav-science-ul">
|
||||
@foreach (getArticlesBYCate(13,6) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}"> {{ $article->title }}</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
<div class="nav-layer-item nav-science-right">
|
||||
<!-- 科研产出 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(12,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-science-covers">
|
||||
@if(getCateChild(12)->isNotEmpty())
|
||||
@foreach (getCateChild(12) as $children)
|
||||
<a class="nav-science-covers-item nav-science-cover-10" href="{{ $children->link }}"
|
||||
style="background-image: url({{ $children->cover_path }});"></a>
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
<!-- 科研进展 -->
|
||||
{{-- <div class="nav-layer-title">--}}
|
||||
{{-- <span>科研进展</span>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- <ul class="nav-science-ul">--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">熔融沉积式工业3D打印机</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">3D测量与打印技术研发与应用</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">智能花光伏发电装置</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">基于物联网技术的城市再生资源回收信息化技术</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- </ul>--}}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.cgzh')) show @endif">
|
||||
<a href="{{ getOneCategory(config('haai.category.cgzh'),'link') }}">{{ getOneCategory(config('haai.category.cgzh'),'title') }}</a>
|
||||
<div class="nav-layer hide">
|
||||
<div class="nav-layer-item nav-results-item">
|
||||
<a class="nav-results-cover" style="background-image: url({{ getOneCategory(20,'cover_path') }});" href="{{ getOneCategory(20,'link') }}"></a>
|
||||
<ul class="nav-science-ul nav-results-ul">
|
||||
@if(getArticlesBYCate(20,5)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(20,5) as $article)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}">
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-layer-item nav-results-item">
|
||||
<a class="nav-results-cover" style="background-image: url({{ getOneCategory(21,'cover_path') }});" href="{{ getOneCategory(21,'link') }}"></a>
|
||||
<ul class="nav-science-ul nav-results-ul">
|
||||
@if(getArticlesBYCate(21,5)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(21,5) as $article)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}">
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.rcdw')) show @endif">
|
||||
<a href="{{ getOneCategory(config('haai.category.rcdw'),'link') }}">{{ getOneCategory(config('haai.category.rcdw'),'title') }}</a>
|
||||
<div class="nav-layer hide">
|
||||
<div class="nav-layer-item nav-talent-left">
|
||||
<!-- 高级职称专家 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(29,'title') }}</span>
|
||||
</div>
|
||||
<ul class="nav-talent-ul">
|
||||
@if (getArticlesBYCate(29,14)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(29,14) as $article)
|
||||
<li>
|
||||
<a href="{{ $article->link }}">
|
||||
<span class="nav-talent-cover" style="background-image: url({{ $article->cover_path }});"></span>
|
||||
<h3 class="nav-talent-name">{{ $article->title }}</h3>
|
||||
<p class="nav-talent-job">{{ $article->job }}</p>
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-layer-item nav-talent-right">
|
||||
<!-- 省级领军人才梯队 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(30,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-talent-team">
|
||||
@if (getCateChild(30) && !empty(getCateChild(30)))
|
||||
@foreach (getCateChild(30) as $children)
|
||||
<a class="nav-talent-team-item" style="background-image: url({{ $children->cover_path }});" href="{{ $children->link }}"></a>
|
||||
@endforeach
|
||||
@endif
|
||||
@if (getOneCategory(58,'cover_path'))
|
||||
<a class="nav-talent-team-item" style="background-image: url({{ getOneCategory(58,'cover_path') }});" href="{{ getOneCategory(58,'link') }}"></a>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.djkxwh')) show @endif">
|
||||
<a href="{{ getOneCategory(config('haai.category.djkxwh'),'link') }}">{{ getOneCategory(config('haai.category.djkxwh'),'title') }}</a>
|
||||
<div class="nav-layer hide">
|
||||
<div class="nav-layer-item nav-science-left">
|
||||
<!-- 工作动态 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(32,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-science-block">
|
||||
@if(getArticlesBYCate(32,6)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(32,6) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="nav-science-ul">
|
||||
@foreach (getArticlesBYCate(32,6) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}"> {{ $article->title }}</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
<!-- 反腐倡廉 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(33,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-science-block">
|
||||
@if(getArticlesBYCate(33,6)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(33,6) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="nav-science-ul">
|
||||
@foreach (getArticlesBYCate(33,6) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}"> {{ $article->title }}</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="nav-layer-item nav-science-right">
|
||||
<!-- 先进事迹 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(34,'title') }}</span>
|
||||
</div>
|
||||
<ul class="nav-science-ul">
|
||||
@if(getArticlesBYCate(34,8)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(34,8) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}">{{ $article->title }}</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
</ul>
|
||||
<a class="nav-results-cover" style="background-image: url({{ getOneCategory(34,'cover_path') }});" href="{{ getOneCategory(34,'link') }}"></a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- nav -->
|
||||
<nav class="nav">
|
||||
<div class="container nav-content">
|
||||
<ul class="nav-ul" id="nav">
|
||||
<li class="nav-ul-li @if (!isset($parent)) show @endif">
|
||||
<a href="/">首页</a>
|
||||
</li>
|
||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.zzjg')) show @endif">
|
||||
<a href=" {{ getOneCategory(config('haai.category.zzjg'),'link') }} ">{{ getOneCategory(config('haai.category.zzjg'),'title') }}</a>
|
||||
<div class="nav-layer hide">
|
||||
<div class="nav-layer-item nav-org-left">
|
||||
<!-- 研究所简介 -->
|
||||
<div class="nav-org-int">
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(2,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-org-mian">
|
||||
<div class="nav-org-cover">
|
||||
<span style="background-image: url({{ getOneArticleBYCate(2)->cover_path }});"></span>
|
||||
</div>
|
||||
<p>
|
||||
{{ getOneArticleBYCate(2)->description }}
|
||||
</p>
|
||||
<p class="nav-org-more"><a href="{{ getOneArticleBYCate(2,'link') }}">查看更多</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 领导班子 -->
|
||||
<div class="nav-org-leadership">
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(3,'title') }}</span>
|
||||
</div>
|
||||
<ul class="nav-org-people">
|
||||
@if (getArticlesBYCate(3,3)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(3,3) as $article)
|
||||
<li>
|
||||
<a href="{{ $article->link }}">
|
||||
<img src="{{ $article->cover_path }}">
|
||||
<p class="nowrap">{{ $article->title }}</p>
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="nav-layer-item nav-org-right">
|
||||
<!-- 机构设置 -->
|
||||
<div class="nav-layer-title ">
|
||||
<span>{{ getOneCategory(4,'title') }}</span>
|
||||
</div>
|
||||
<ul class="nav-org-flex">
|
||||
<li><a href="{{ getOneCategory(5,'link') }}">{{ getOneCategory(5,'title') }}</a></li>
|
||||
<li><a href="{{ getOneCategory(6,'link') }}">{{ getOneCategory(6,'title') }}</a></li>
|
||||
<li><a href="{{ getOneCategory(7,'link') }}">{{ getOneCategory(7,'title') }}</a></li>
|
||||
<li><a href="{{ getOneCategory(8,'link') }}">{{ getOneCategory(8,'title') }}</a></li>
|
||||
<li><a href="{{ getOneCategory(9,'link') }}">{{ getOneCategory(9,'title') }}</a></li>
|
||||
</ul>
|
||||
<div class="nav-layer-title"></div>
|
||||
<ul class="nav-org-flex">
|
||||
<li style="width: 100%;">
|
||||
<a href="{{ getOneCategory(39,'link') }}">{{ getOneCategory(39,'title') }}</a></li>
|
||||
<li>
|
||||
<a href="{{ getOneCategory(37,'link') }}">{{ getOneCategory(37,'title') }}</a>
|
||||
@if (getCateChild(37)->isNotEmpty())
|
||||
@foreach (getCateChild(37) as $child)
|
||||
<p><a href="{{ $child->link }}">{{ $child->title }}</a></p>
|
||||
@endforeach
|
||||
@endif
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{ getOneCategory(38,'link') }}">{{ getOneCategory(38,'title') }}</a>
|
||||
@if (getCateChild(38)->isNotEmpty())
|
||||
@foreach (getCateChild(38) as $child)
|
||||
<p><a href="{{ $child->link }}">{{ $child->title }}</a></p>
|
||||
@endforeach
|
||||
@endif
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.kxyj')) show @endif">
|
||||
<a href="{{ getOneCategory(config('haai.category.kxyj'),'link') }}">{{ getOneCategory(config('haai.category.kxyj'),'title') }}</a>
|
||||
<div class="nav-layer hide">
|
||||
<div class="nav-layer-item nav-science-left">
|
||||
<!-- 创新单元 -->
|
||||
{{-- <div class="nav-layer-title">--}}
|
||||
{{-- <span>{{ getOneCategory(11,'title') }}</span>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- <div class="nav-science-block">--}}
|
||||
{{-- <a class="nav-science-cover" href="#" style="background-image: url(/assets/index/img/banner_00.jpeg);"></a>--}}
|
||||
{{-- <ul class="nav-science-ul">--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">熔融沉积式工业3D打印机</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">3D测量与打印技术研发与应用</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">智能花光伏发电装置</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">基于物联网技术的城市再生资源回收信息化技术</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- </ul>--}}
|
||||
{{-- </div>--}}
|
||||
<!-- 科技奖励 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(13,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-science-block">
|
||||
@if(getArticlesBYCate(13,6)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(13,6) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="nav-science-ul">
|
||||
@foreach (getArticlesBYCate(13,6) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}"> {{ $article->title }}</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
<div class="nav-layer-item nav-science-right">
|
||||
<!-- 科研产出 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(12,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-science-covers">
|
||||
@if(getCateChild(12)->isNotEmpty())
|
||||
@foreach (getCateChild(12) as $children)
|
||||
<a class="nav-science-covers-item nav-science-cover-10" href="{{ $children->link }}"
|
||||
style="background-image: url({{ $children->cover_path }});"></a>
|
||||
@endforeach
|
||||
@endif
|
||||
</div>
|
||||
<!-- 科研进展 -->
|
||||
{{-- <div class="nav-layer-title">--}}
|
||||
{{-- <span>科研进展</span>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- <ul class="nav-science-ul">--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">熔融沉积式工业3D打印机</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">3D测量与打印技术研发与应用</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">智能花光伏发电装置</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究铝合金轻量化制造及试验生产线关键技术研究</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- <li class="nowrap">--}}
|
||||
{{-- <i class="fa fa-caret-right"></i>--}}
|
||||
{{-- <a href="#">基于物联网技术的城市再生资源回收信息化技术</a>--}}
|
||||
{{-- </li>--}}
|
||||
{{-- </ul>--}}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.cgzh')) show @endif">
|
||||
<a href="{{ getOneCategory(config('haai.category.cgzh'),'link') }}">{{ getOneCategory(config('haai.category.cgzh'),'title') }}</a>
|
||||
<div class="nav-layer hide">
|
||||
<div class="nav-layer-item nav-results-item">
|
||||
<a class="nav-results-cover" style="background-image: url({{ getOneCategory(20,'cover_path') }});" href="{{ getOneCategory(20,'link') }}"></a>
|
||||
<ul class="nav-science-ul nav-results-ul">
|
||||
@if(getArticlesBYCate(20,5)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(20,5) as $article)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}">
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-layer-item nav-results-item">
|
||||
<a class="nav-results-cover" style="background-image: url({{ getOneCategory(21,'cover_path') }});" href="{{ getOneCategory(21,'link') }}"></a>
|
||||
<ul class="nav-science-ul nav-results-ul">
|
||||
@if(getArticlesBYCate(21,5)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(21,5) as $article)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}">
|
||||
{{ $article->title }}
|
||||
<span>{{ $article->created_at->format('Y-m-d') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.rcdw')) show @endif">
|
||||
<a href="{{ getOneCategory(config('haai.category.rcdw'),'link') }}">{{ getOneCategory(config('haai.category.rcdw'),'title') }}</a>
|
||||
<div class="nav-layer hide">
|
||||
<div class="nav-layer-item nav-talent-left">
|
||||
<!-- 高级职称专家 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(29,'title') }}</span>
|
||||
</div>
|
||||
<ul class="nav-talent-ul">
|
||||
@if (getArticlesBYCate(29,14)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(29,14) as $article)
|
||||
<li>
|
||||
<a href="{{ $article->link }}">
|
||||
<span class="nav-talent-cover" style="background-image: url({{ $article->cover_path }});"></span>
|
||||
<h3 class="nowrap nav-talent-name">{{ $article->title }}</h3>
|
||||
<p class="nowrap nav-talent-job">{{ $article->job }}</p>
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-layer-item nav-talent-right">
|
||||
<!-- 省级领军人才梯队 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(30,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-talent-team">
|
||||
@if (getCateChild(30) && !empty(getCateChild(30)))
|
||||
@foreach (getCateChild(30) as $children)
|
||||
<a class="nav-talent-team-item" style="background-image: url({{ $children->cover_path }});" href="{{ $children->link }}"></a>
|
||||
@endforeach
|
||||
@endif
|
||||
@if (getOneCategory(58,'cover_path'))
|
||||
<a class="nav-talent-team-item" style="background-image: url({{ getOneCategory(58,'cover_path') }});" href="{{ getOneCategory(58,'link') }}"></a>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-ul-li @if (isset($parent) && $parent->id==config('haai.category.djkxwh')) show @endif">
|
||||
<a href="{{ getOneCategory(config('haai.category.djkxwh'),'link') }}">{{ getOneCategory(config('haai.category.djkxwh'),'title') }}</a>
|
||||
<div class="nav-layer hide">
|
||||
<div class="nav-layer-item nav-science-left">
|
||||
<!-- 工作动态 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(32,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-science-block">
|
||||
@if(getArticlesBYCate(32,6)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(32,6) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="nav-science-ul">
|
||||
@foreach (getArticlesBYCate(32,6) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}"> {{ $article->title }}</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
<!-- 反腐倡廉 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(33,'title') }}</span>
|
||||
</div>
|
||||
<div class="nav-science-block">
|
||||
@if(getArticlesBYCate(33,6)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(33,6) as $article)
|
||||
@if ($loop->first)
|
||||
<a class="nav-science-cover" href="{{ $article->link }}" style="background-image: url({{ $article->cover_path }});">
|
||||
</a>
|
||||
@endif
|
||||
@endforeach
|
||||
<ul class="nav-science-ul">
|
||||
@foreach (getArticlesBYCate(33,6) as $article)
|
||||
@if ($loop->iteration>1)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}"> {{ $article->title }}</a>
|
||||
</li>
|
||||
@endif
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="nav-layer-item nav-science-right">
|
||||
<!-- 先进事迹 -->
|
||||
<div class="nav-layer-title">
|
||||
<span>{{ getOneCategory(34,'title') }}</span>
|
||||
</div>
|
||||
<ul class="nav-science-ul">
|
||||
@if(getArticlesBYCate(34,8)->isNotEmpty())
|
||||
@foreach (getArticlesBYCate(34,8) as $article)
|
||||
<li class="nowrap">
|
||||
<i class="fa fa-caret-right"></i>
|
||||
<a href="{{ $article->link }}">{{ $article->title }}</a>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
</ul>
|
||||
<a class="nav-results-cover" style="background-image: url({{ getOneCategory(59,'cover_path') }});" href="{{ getOneCategory(59,'link') }}"></a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- end nav -->
|
||||
Reference in New Issue
Block a user