Licitator 1.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
601 B

5 years ago
  1. <div class="modal-header">
  2. <button type="button" class="close" data-dismiss="modal">&times;</button>
  3. <h4 class="modal-title" id="exampleModalLabel">{{ noticia.titulo }}</h4>
  4. </div>
  5. <div class="modal-body">
  6. {% if noticia.imagen!=null %}
  7. <img src="{{ vich_uploader_asset(noticia, 'imageFile', 'App\\Entity\\News') }}" alt="{{ noticia.titulo }}" />
  8. {%else%}
  9. <img src="/bundles/sonatauser/default_avatar.png" alt="{{ noticia.titulo }}" />
  10. {% endif %}
  11. <div class="news-body">
  12. <div class="loader"></div>
  13. {{ noticia.descripcion|raw }}
  14. </div>
  15. </div>