list.blade.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @extends('module.layouts.content')
  2. @push('meta')
  3. @endpush
  4. @push('css')
  5. <link href="{{ theme_asset('app/css/common.css') }}" rel="stylesheet">
  6. <link rel="stylesheet" type="text/css" href="{{ theme_asset('app/css/hrtools/hrtools.css') }}"/>
  7. @endpush
  8. @push('js')
  9. @endpush
  10. {{--@include('module.section.header_min')--}}
  11. {{--@include('module.section.content_header')--}}
  12. @section('content')
  13. <div class="hrl link_gray6">
  14. <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>
  15. <div class="txt link_blue">
  16. <ul>
  17. @if($infos->toArray())
  18. @foreach($infos as $k=>$v)
  19. <li><a href="{{$v->file_url}}" target="_blank" rel="nofollow noopener noreferrer">{!! $v->title !!}</a></li>
  20. @endforeach
  21. @endif
  22. </ul>
  23. <div class="clear"></div>
  24. </div>
  25. </div>
  26. {{-- 页脚 --}}
  27. {{--@include('module.section.content_footer')--}}
  28. @endsection
  29. @section('script')
  30. @endsection