show_article.blade.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @inject('systemPresenter', 'App\Presenters\SystemPresenter')
  2. @extends('layouts.app')
  3. @section('title', $systemPresenter->checkReturnValue('title', $article->title))
  4. @section('description', $systemPresenter->checkReturnValue('seo_desc', $article->desc))
  5. @section('keywords', $systemPresenter->checkReturnValue('seo_keyword', $article->keyword))
  6. @section('style')
  7. <link rel="stylesheet" href="{{ asset('share.js/css/share.min.css') }}">
  8. @endsection
  9. @section('header-text')
  10. <div class="text-inner">
  11. <div class="row">
  12. <div class="col-md-12 to-animate fadeInUp animated">
  13. <h3 class="color-white">
  14. {{ $article->title }}
  15. </h3>
  16. <p class=" m-t-25 color-white">
  17. <i class="glyphicon glyphicon-calendar"></i>{{ $article->created_at }}
  18. &nbsp;
  19. @if($article->category)
  20. <i class="glyphicon glyphicon-th-list"></i>
  21. <a href="{{ route('category', ['id' => $article->cate_id]) }}" target="_blank">
  22. {{ $article->category->name }}
  23. </a>
  24. @endif
  25. </p>
  26. <p class="color-white">
  27. <i class="glyphicon glyphicon-tags"></i>&nbsp;
  28. @foreach ($article->tag as $tag)
  29. <a href="{{ route('tag', ['id' => $tag->id]) }}" target="_blank">
  30. {{ $tag->tag_name }}
  31. </a>
  32. &nbsp;
  33. @endforeach
  34. </p>
  35. </div>
  36. </div>
  37. </div>
  38. @endsection
  39. @section('content')
  40. <div class="markdown-preview">
  41. {!! $article->html_content !!}
  42. </div>
  43. <div id="share" class="social-share m-t-25"></div>
  44. <!-- 评论插件 -->
  45. @include('default.comment.index', [
  46. 'commentId' => $article->id,
  47. 'commentTitle' => $article->title,
  48. 'commentUrl' => Request::getUri()
  49. ])
  50. @endsection
  51. @section('script')
  52. <script src="{{ asset('share.js/js/jquery.share.min.js') }}"></script>
  53. <script>
  54. $(function(){
  55. $('#share').share({sites: ['qzone', 'qq', 'weibo','wechat']});
  56. });
  57. </script>
  58. @endsection