templates/network/profile/widgets/profile_widget_downloads.html.twig line 1

Open in your IDE?
  1. {% set downloads = profile.downloads %}
  2. {% if downloads %}
  3.   {% embed 'network/widget/widget.html.twig' %}
  4.     {% block content %}
  5.       <div>
  6.         <h3 class="mb-5 text-lg font-medium uppercase font-headline text-neutral-600">
  7.           {{ 'Downloads'|trans }}
  8.         </h3>
  9.         <ul class="grid gap-3">
  10.           {% for download in downloads %}
  11.             <li class="flex gap-2">
  12.               {% include 'icons/download.svg.twig' with { class: 'w-5 h-5 mt-px flex-shrink-0' } %}
  13.               <a href="{{ absolute_url(download.element.fullPath) }}"
  14.                 target="_blank"
  15.                 title="{{ download.data.title }}"
  16.                 class="grid"
  17.                 rel="noopener noreferrer"
  18.                 download>
  19.                 <span class="truncate">{{ download.data.title ?? download.element.key }}</span>
  20.                 <span class="text-sm truncate text-neutral-500">
  21.                   {{ download.element.mimetype }} [{{ download.element.filesize(true) }}]
  22.                 </span>
  23.               </a>
  24.             </li>
  25.           {% endfor %}
  26.         </ul>
  27.       </div>
  28.     {% endblock %}
  29.   {% endembed %}
  30. {% endif %}