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.
|
|
{% block noticia %} {% set noticiaImage = vich_uploader_asset(noticia, 'imageFile', 'App\\Entity\\News') %} <div class="my-3 p-3 bg-white rounded shadow-sm"> <a href="{{ path('admin_app_news_getShowNewsAjax', {'id': noticia.id}) }}" class="news-link" data-title="{{ noticia.titulo }}" data-image="{{ noticiaImage }}" data-toggle="modal" data-target="#myModal"> <div class="boxdoc text-muted pt-3"> {% if noticia.imagen!=null %} <img src="{{ noticiaImage }}" alt="{{ noticia.titulo }}" width="30px"/> {%else%} <img src="/bundles/sonatauser/default_avatar.png" alt="{{ noticia.titulo }}" width="30px"/> {% endif %} <div class="media-body pb-3 mb-0 small lh-125 border-bottom border-gray"> <div class="d-flex justify-content-between align-items-center w-100"> <strong class="text-gray-dark">{{ noticia.titulo }}</strong> </div> <div class="d-flex justify-content-between align-items-center w-100"> <span class="d-block">{{ noticia.entrada }}</span> </div> <span class="d-block">{{ noticia.bso.nombreCompleto }}</span> </div> </div> </a> </div>{% endblock %}
|