12345678910111213141516171819202122232425262728293031323334353637383940 |
- @extends('module.layouts.content')
- @push('meta')
- @endpush
- @push('css')
- <link href="{{ theme_asset('app/css/common.css') }}" rel="stylesheet">
- <link rel="stylesheet" type="text/css" href="{{ theme_asset('app/css/hrtools/hrtools.css') }}"/>
- @endpush
- @push('js')
- @endpush
- {{--@include('module.section.header_min')--}}
- {{--@include('module.section.content_header')--}}
- @section('content')
- <div class="hrl link_gray6">
- <div class="tit"><a href="{:url_rewrite('QS_index')}">网站首页</a><span>></span><a href="{{route('hrtools')}}">HR工具箱</a><span>></span>{{$hrtools_category->category_name}}</div>
- <div class="txt link_blue">
- <ul>
- @if($infos->toArray())
- @foreach($infos as $k=>$v)
- <li><a href="{{$v->file_url}}" target="_blank" rel="nofollow noopener noreferrer">{!! $v->title !!}</a></li>
- @endforeach
- @endif
- </ul>
- <div class="clear"></div>
- </div>
- </div>
- {{-- 页脚 --}}
- {{--@include('module.section.content_footer')--}}
- @endsection
- @section('script')
- @endsection
|