forked from GNUsocial/gnu-social
12 lines
446 B
Twig
12 lines
446 B
Twig
<figure>
|
|
{% set thumbnail = attachment.getThumbnail() %}
|
|
<img class="u-photo"
|
|
alt="{{ attachment.getBestTitle(note) }}"
|
|
src="{{ attachment.getThumbnailUrl() }}"
|
|
width="{{ thumbnail.getWidth() }}"
|
|
height="{{ thumbnail.getHeight() }}">
|
|
<figcaption><a
|
|
href="{{ path('attachment_show', {'id': attachment.getId()}) }}">{{ attachment.getBestTitle(note) }}</a>
|
|
</figcaption>
|
|
</figure>
|