Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <article class="col-xs-12 col-sm-12 col-md-8">
  2.  
  3. <ol class="breadcrumb breadcrum">
  4. <li><a href="{{ route('front.index') }}">Home</a></li>
  5. <li><a href="{{route('front.search.categoria',$articulo->categoria->nombre)}}">
  6. {{$articulo->categoria->nombre}}
  7. </a></li>
  8. </ol>
  9.  
  10. <div class="panel panel-default">
  11. <div class="panel-body">
  12.  
  13. <span aria-hidden="true" class="glyphicon glyphicon-time">
  14. </span>
  15. {{$articulo->created_at->diffForHumans()}} |
  16. <span aria-hidden="true" class="glyphicon glyphicon-pencil">
  17. </span>
  18. {{$articulo->autor->nombre}}
  19. <br><br>
  20.  
  21. @include('front.template.partials.social.face-me-gusta')
  22. @include('front.template.partials.social.compartir-wapp')
  23. <br>
  24. <span class="titulo"><b>{{$articulo->titulo}}</b></span>
  25. <br>
  26. <h5>{{$articulo->copete}}</h5>
  27. <hr>
  28. <img src="{{ asset('img/articulos/'.$articulo->imagen->nombre) }}" alt="" class="img-responsive">
  29. <br>
  30. {!!$articulo->contenido!!}
  31. <hr>
  32. @include('front.template.partials.perfil-autor')
  33. <hr>
  34. <h4>
  35. Si te gusto, Compartilo:
  36. @include('front.template.partials.social.face-compartir')
  37. @include('front.template.partials.social.compartir-wapp')
  38. </h4>
  39. <hr>
  40.  
  41. @include('front.template.partials.social.face-comments')
  42.  
  43.  
  44.  
  45. </div>
  46.  
  47. </div>
  48. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement